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

# List Models

`GET /v1/models`

List all available models.

Returns models auto-discovered from configured providers, enriched with
pricing data from the model_pricing table when available. Models that only
exist in the pricing table are also included for backward compatibility.

## Query parameters

- `provider` string, nullable — Filter models by provider name

## Response `200`

Successful Response

- ModelListResponse — OpenAI-compatible model list response.
  - `data` ModelObject[], required
    - `context_window` integer, nullable
    - `created` integer, required
    - `id` string, required
    - `object` string
    - `owned_by` string, required
    - `pricing` ModelPricingInfo — Pricing information for a model.
      - `cache_read_price_per_million` number, nullable
      - `cache_write_1h_price_per_million` number, nullable
      - `cache_write_price_per_million` number, nullable
      - `input_price_per_million` number, required
      - `output_price_per_million` number, required
      - `pricing_tiers` object[]
    - `pricing_source` string
  - `object` string

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/mozilla-ai/apis/otari.md) · [All operations](https://skmtc.net/mozilla-ai/apis/otari/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mozilla-ai/otari/revisions/c05befed4db4/schema)
