> ## 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 tokens list

> Returns the tokens associated with a project.



## OpenAPI

````yaml get /v1/project/tokens
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/tokens:
    get:
      tags:
        - Tokens
      summary: Get tokens list
      description: Returns the tokens associated with a project.
      operationId: getProjectTokens
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: The unique ID of the token.
                        label:
                          type: string
                          description: The label of the token.
                        createdAt:
                          type: string
                          description: The creation date of the token.
                        revokedAt:
                          type: string
                          description: The revocation date of the token, if any.
                        settings:
                          type: object
                          properties:
                            rateLimit:
                              type: object
                              properties:
                                limit:
                                  type: number
                                  description: The rate limit value.
                                window:
                                  type: number
                                  description: The rate limit window value.
                              required:
                                - limit
                                - window
                              description: The rate limit settings for the token.
                          description: The settings for the token.
                      required:
                        - id
                        - label
                        - createdAt
                    description: Array of token objects.
                required:
                  - data
              example:
                data:
                  - id: b3e2538e-f2e3-43df-b213-337c88029542
                    label: Prod Token
                    createdAt: '2024-10-16 20:24:06'
                    settings:
                      rateLimit:
                        limit: 100
                        window: 60
        '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

````