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

# List API Keys

> List all API keys for a project

Retrieve all API keys associated with a specific project.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication
</ParamField>

### Path Parameters

<ParamField path="project_id" type="string" required>
  Unique project identifier
</ParamField>

### Response

<ResponseField name="api_keys" type="array">
  Array of API key objects

  <Expandable title="API Key Object">
    <ResponseField name="id" type="string">
      API key unique identifier
    </ResponseField>

    <ResponseField name="name" type="string">
      API key name
    </ResponseField>

    <ResponseField name="project_id" type="string">
      Associated project ID
    </ResponseField>

    <ResponseField name="created_at" type="string">
      API key creation timestamp
    </ResponseField>
  </Expandable>
</ResponseField>

<Note>
  The actual API key values are not returned for security reasons. Only the metadata is shown.
</Note>


## OpenAPI

````yaml GET /api/v1/projects/{project_id}/api-keys
openapi: 3.1.0
info:
  title: Dev Kit for AI API
  description: 'API for Dev Kit for AI: Developer Toolkit for AI-Powered Web Applications'
  version: 1.6.1
servers:
  - url: https://api.devkit4ai.com
    description: Dev Kit for AI Production Server
  - url: https://api.vibecoding.ad
    description: Vibe Coding Production Server
security: []
paths:
  /api/v1/projects/{project_id}/api-keys:
    get:
      tags:
        - Project Management
      summary: List Api Keys
      description: List all API keys for a project
      operationId: list_api_keys_api_v1_projects__project_id__api_keys_get
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Project Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiKeyResponse'
                title: >-
                  Response List Api Keys Api V1 Projects  Project Id  Api Keys
                  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    ApiKeyResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        key_prefix:
          type: string
          title: Key Prefix
        is_active:
          type: boolean
          title: Is Active
        last_used_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Used At
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - name
        - key_prefix
        - is_active
        - last_used_at
        - created_at
      title: ApiKeyResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: auth/login

````