List Models
Endpoints
List Models
List available models with providers, context windows, and pricing.
GET
List Models
List All Models
Returns the current model catalog, including model IDs, context windows, providers, modalities, and token pricing.Try it now! Click the “Try it” button above to test the API in the playground. You’ll need your API key (add it when prompted).
Example
Each model has an
is_tee boolean. is_tee: true means the model can be served confidentially, on a
verified TEE provider. The receipt remains the per-response proof. See
Confidential models.Response
Model Object Fields
| Field | Description |
|---|---|
id | Model identifier for API calls. |
name | Human-readable name. |
is_tee | true if the model can be served confidentially, on a verified TEE provider. |
created | Unix timestamp when the model was added. |
context_length | Maximum context window. |
max_output_length | Maximum output length. |
input_modalities | Accepted inputs, for example text, image, file, video. |
output_modalities | Produced outputs, for example text. |
pricing.prompt | Price per prompt token. Multiply by 1,000,000 for the per-million-token price. |
pricing.completion | Price per completion token. Multiply by 1,000,000 for the per-million-token price. |
supported_parameters | Request parameters this model accepts, for example max_tokens or max_completion_tokens. |
providers | Confidential providers that can serve the model, for example near-ai, tinfoil, chutes. |
Finding confidential models
Filter byis_tee: true to find models that can be served confidentially:
is_tee is consistent across aliases. To prove a
specific response was served from an attested enclave, read the x-receipt-id header and verify it
with /v1/aci/attestation and /v1/aci/receipts/{id}. See
Verify a response.
Confidential models
The confidential catalog and backing providers →