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

# Get Project



## OpenAPI

````yaml GET /api/v1/task/projects/{projectId}
openapi: 3.1.0
info:
  title: Xenia Team API - Get Project
  version: 1.0.0
  description: >-
    Retrieve detailed information for a single project using its unique
    identifier.
servers:
  - url: https://api.xenia.team
security: []
paths:
  /api/v1/task/projects/{projectId}:
    get:
      tags:
        - Projects
      summary: Get Project
      parameters:
        - name: projectId
          in: path
          required: true
          description: UUID of the project to retrieve
          schema:
            type: string
            format: uuid
          example: 0b7e1f50-b56a-466e-be7c-2ec0ef692660
      responses:
        '200':
          description: Project details successfully returned
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      workspaceId:
                        type: string
                        format: uuid
                        description: UUID of the workspace.
                      title:
                        type: string
                      isPaused:
                        type: boolean
                      isLocationAutoTag:
                        type: boolean
                      type:
                        type: string
                        enum:
                          - user
                          - asset
                          - role
                      entityIds:
                        type: array
                        items:
                          type: string
                          format: uuid
                      assigneesRoles:
                        type:
                          - array
                          - 'null'
                      metadata:
                        type:
                          - object
                          - 'null'
                      state:
                        type: string
                        example: ready
                      CreatedBy:
                        type: string
                        format: uuid
                      UpdatedBy:
                        type: string
                        format: uuid
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      deletedAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
                      ProjectAccess:
                        type: array
                        items:
                          type: object
                      NextTask:
                        type: array
                        items:
                          type: object
                  extra_meta:
                    type: object
        '400':
          description: Bad Request - Invalid project ID format.
        '401':
          description: Unauthorized - Missing or invalid authentication.
        '403':
          description: Forbidden - Insufficient permissions to access project.
        '404':
          description: Not Found - Project does not exist.
        '500':
          description: Internal Server Error.
      security:
        - clientKey: []
          clientSecret: []
components:
  securitySchemes:
    clientKey:
      type: apiKey
      in: header
      name: x-client-key
    clientSecret:
      type: apiKey
      in: header
      name: x-client-secret

````