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

# List models

> Lists the models currently available on your endpoint. All models are served exclusively from Australian datacenters — the catalogue is synced and filtered continuously, so what this returns is what the sovereignty claim covers.



## OpenAPI

````yaml GET /v1/models
openapi: 3.1.0
info:
  title: Kubox API
  description: >-
    OpenAI-compatible AI endpoints on sovereign Australian infrastructure.
    Authenticate with your `kbx_live_…` API key as a Bearer token. This
    reference is generated from the gateway source code.
  version: 1.0.0
servers:
  - url: https://api.kubox.ai
    description: Kubox cloud
security:
  - bearerAuth: []
paths:
  /v1/models:
    get:
      summary: List models
      description: >-
        Lists the models currently available on your endpoint. All models are
        served exclusively from Australian datacenters — the catalogue is synced
        and filtered continuously, so what this returns is what the sovereignty
        claim covers.
      operationId: listModels
      responses:
        '200':
          description: A list of available models.
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    enum:
                      - list
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Model'
        '401':
          description: Incorrect API key provided.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error:
                  type: invalid_request_error
                  code: invalid_api_key
                  message: Incorrect API key provided.
      security:
        - bearerAuth: []
components:
  schemas:
    Model:
      type: object
      properties:
        id:
          type: string
          example: MAGPiE
        object:
          type: string
          enum:
            - model
      additionalProperties: true
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your Kubox API key (`kbx_live_…`) from the console.

````