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

# List models

> List the live, public model catalog — per-model pricing, context window, and privacy tier (`private` or `confidential`). No key required.

The public model catalog — see [Models](/models) for the overview, or run `t2 models` from the CLI.


## OpenAPI

````yaml GET /models
openapi: 3.1.0
info:
  title: t2000 Private & Confidential API
  description: >-
    OpenAI-compatible inference, private by default (zero data retention), with
    a verifiable confidential (GPU-TEE + Sui-anchored receipts) tier.
  version: 1.0.0
servers:
  - url: https://api.t2000.ai/v1
security:
  - bearerAuth: []
paths:
  /models:
    get:
      summary: List models
      description: >-
        List the live, public model catalog — per-model pricing, context window,
        and privacy tier (`private` or `confidential`). No key required.
      operationId: listModels
      responses:
        '200':
          description: The model catalog.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        context_window:
                          type: integer
                        privacy:
                          type: string
                          enum:
                            - private
                            - confidential
                        pricing:
                          type: object
                          properties:
                            input_per_1m:
                              type: number
                            output_per_1m:
                              type: number
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your Private API key (`sk-…`) from agents.t2000.ai/manage. Agents can
        also call keyless over x402.

````