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

# Get project by ID

> Retrieve details of a specific project.



## OpenAPI

````yaml get /v1/projects/{id}
openapi: 3.0.0
info:
  title: Projects API
  version: 1.0.0
servers:
  - url: https://api.nomi.tools
    description: Main API server
security:
  - basicAuth: []
paths:
  /v1/projects/{id}:
    get:
      tags:
        - Projects
      summary: Get project by ID
      description: Retrieve details of a specific project.
      operationId: getProject
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: Accept
          in: header
          required: true
          schema:
            type: string
            enum:
              - application/json
            default: application/json
      responses:
        '200':
          description: Project details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Project'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Project:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the project.
        projectCategoryId:
          type: string
          nullable: true
          description: Identifier for the project category.
        name:
          type: string
          description: Name of the project.
        notes:
          type: string
          nullable: true
          description: Additional notes about the project.
        hasPlan:
          type: boolean
          description: Indicates if the project has a plan.
        planIncome:
          type: number
          format: float
          nullable: true
          description: Planned income for the project.
        planOutcome:
          type: number
          format: float
          nullable: true
          description: Planned outcome for the project.
        income:
          type: number
          format: float
          description: Actual income for the project.
        outcome:
          type: number
          format: float
          description: Actual outcome for the project.
        grossProfit:
          type: number
          format: float
          description: Actual gross profit for the project.
        profitability:
          type: number
          format: float
          description: Actual profitability percentage.
        isArchived:
          type: boolean
          description: Indicates if the project is archived.
        planGrossProfit:
          type: number
          format: float
          nullable: true
          description: Planned gross profit for the project.
        planProfitability:
          type: number
          format: float
          nullable: true
          description: Planned profitability percentage.
  responses:
    Unauthorized:
      description: Unauthorized access
    Forbidden:
      description: Forbidden access
    NotFound:
      description: Resource not found
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        Use HTTP Basic Authentication.  Provide your email as login and PPT
        token as the password.

````