---
title: "List available language models"
method: GET
path: "/llm/v1/models"
tags: ["LLMs"]
---

# List available language models

`GET /llm/v1/models`

Retrieve a list of all available language models from 40+ providers including OpenAI, Anthropic, Google, and Case.dev's specialized legal models. Returns OpenAI-compatible model metadata with pricing information.

This endpoint is compatible with OpenAI's models API format, making it easy to integrate with existing applications.

## Response `200`

Successfully retrieved models list

- object
  - `data` object[]
    - `id` string — Unique model identifier
    - `object` string — Object type, always 'model'
    - `created` integer — Unix timestamp of model creation
    - `owned_by` string — Model provider (openai, anthropic, google, casemark, etc.)
    - `pricing` object
      - `input` string — Input token price per token
      - `output` string — Output token price per token
      - `input_cache_read` string — Cache read price per token (if supported)
  - `object` string — Response object type, always 'list'

## Other responses

- `401` — Invalid or missing API key
- `502` — AI Gateway returned invalid response

---

[API](https://skmtc.net/casemark/apis/case-dev-api.md) · [All operations](https://skmtc.net/casemark/apis/case-dev-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/casemark/case-dev-api/revisions/5b7e64e6d6f9/schema)
