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

# Get project details

> Returns the details of a project.



## OpenAPI

````yaml get /v1/project
openapi: 3.1.0
info:
  version: 1.0.1
  title: Poix API
servers:
  - url: https://api.poix.io
    description: Production server
security: []
paths:
  /v1/project:
    get:
      tags:
        - Projects
      summary: Get project details
      description: Returns the details of a project.
      operationId: getProjectDetails
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: The project ID in UUID format.
                  name:
                    type: string
                    description: The name of the project.
                  balance:
                    type: number
                    description: The balance of the project.
                  createdAt:
                    type: string
                    description: The creation date of the project.
                  tokenCount:
                    type: number
                    description: The number of tokens associated with the project.
                  dailySpent:
                    type: number
                    description: The daily spent amount for the project.
                  dailyRequests:
                    type: number
                    description: The number of daily requests for the project.
                required:
                  - id
                  - name
                  - balance
                  - createdAt
                  - tokenCount
                  - dailySpent
                  - dailyRequests
              example:
                id: 3740249b-d8d1-4235-ac59-b965fc1bee44
                name: Default
                balance: 231.4455
                createdAt: '2024-09-14 19:37:51'
                tokenCount: 28
                dailySpent: 13.74484999521519
                dailyRequests: 43561
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      message:
                        type: string
                    required:
                      - message
                required:
                  - error
              example:
                error:
                  message: API key is invalid.
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````