> ## Documentation Index
> Fetch the complete documentation index at: https://developers.tarefy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Busca as informações de um projeto



## OpenAPI

````yaml /api-reference/tarefas.yaml get /v2/projects/{projectId}/info
openapi: 3.0.0
info:
  title: Tarefy API
  description: >-
    Tarefy REST API — platform for team management, tasks, culture, and
    performance.


    Versioned endpoints are available under `/v2/...`. Authenticate with a
    Bearer JWT in the `Authorization` header.


    To get started, see the [authentication guide](/authentication) and the
    [quickstart](/quickstart).
  version: 2.0.0
  contact:
    name: Tarefy Support
    email: suporte@tarefy.com
    url: https://tarefy.com
  license:
    name: Proprietary
servers:
  - url: https://app.tarefy.com/nodeapi
    description: Production
security:
  - bearerAuth: []
tags: []
paths:
  /v2/projects/{projectId}/info:
    get:
      tags:
        - Projects
      summary: Busca as informações de um projeto
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Informações do projeto retornadas com sucesso
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      id:
                        type: integer
                      name:
                        type: string
                      focal_point:
                        type: string
                        nullable: true
                      project_type:
                        type: string
                        nullable: true
                      go_live_date:
                        type: string
                        format: date
                        nullable: true
                      mapped_risks:
                        type: array
                        items:
                          type: object
                      important_points:
                        type: array
                        items:
                          type: object
                      internal_note:
                        type: string
                        nullable: true
                        maxLength: 500
                        description: Observação visível apenas para usuários internos.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        JWT token obtained from `/v2/auth/login`. Send it in the header:
        `Authorization: Bearer <your_token>`

````