---
title: "List available models"
method: GET
path: "/v1/models"
tags: ["Models"]
---

# List available models

`GET /v1/models`

List the models currently available through the API.

## Response `200`

Successful Response

- ModelsResponse — Response model for models endpoint.
  - `data` ModelObject[], required
    - `id` string, required — Unique identifier for the model.
    - `name` string, required — Display name for the model.
    - `created` integer, required — Unix timestamp when model was created.
    - `input_modalities` string[], required — Supported input modalities.
    - `output_modalities` string[], required — Supported output modalities.
    - `context_length` integer, required — Maximum context length in tokens.
    - `max_output_length` integer, required — Maximum output length in tokens.
    - `pricing` PricingInfo, required — Pricing information for a model.
      - `prompt` string, required — Pricing per 1 token for input.
      - `completion` string, required — Pricing per 1 token for output.
      - `input_cache_reads` string — Pricing per 1 token for cache reads.
      - `input_cache_writes` string — Pricing per 1 token for cache writes.
    - `supported_sampling_parameters` string[], required — Supported sampling parameters.
    - `supported_features` string[], required — Supported model features.
    - `description` string, nullable — Model description.
    - `openrouter` OpenRouterInfo — Optional OpenRouter-specific information.
      - `slug` string, required — OpenRouter slug for the model.
    - `datacenters` DataCenter[], nullable — Available datacenters.
      - `country_code` string, required — ISO 3166 Alpha-2 country code.

## Other responses

- `401` — Unauthorized — missing or invalid API key.
- `500` — Internal Server Error.

---

[API](https://skmtc.dev/inceptionlabs/apis/inception-api.md) · [All operations](https://skmtc.dev/inceptionlabs/apis/inception-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/inceptionlabs/inception-api/revisions/f42ebbad1e95/schema)
