---
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` union[]
        - union
          - PricingTier — Whole-request price cliff selected by total billable input tokens.
            - `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, nullable
            - `min_input_tokens` integer, required
            - `output_price_per_million` number, nullable
          - object
    - `pricing_source` string
  - `object` string

## Other responses

- `422` — Validation Error

## Changes

> 126 revisions in range; 98 could not be searched.

- **2026-04-17** `0f43605bdc13` — 4 warning, 2 info
  - deleted the `query` request parameter `provider`
  - removed the optional property `data/items/context_window` from the response with the `200` status
  - removed the optional property `data/items/pricing` from the response with the `200` status
  - removed the optional property `data/items/pricing_source` from the response with the `200` status
  - …2 more

[Change history](https://skmtc.dev/mozilla-ai/apis/otari/changes/v1/models/get.md)

---

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