---
title: "List supported agent models"
method: GET
path: "/v1/models"
tags: ["agents"]
---

# List supported agent models

`GET /v1/models`

Lists the LLM models that can be set as an agent's `model` on create_agent / patch_agent. The set is global and can change over time, so read it here instead of hardcoding values.

## Response `200`

Supported agent models

- object — The LLM models available to set as an agent `model`. The set is global and can change over time, so read it here rather than hardcoding values.
  - `data` object[], required
    - `model_string` string, required — The value to pass as an agent's `model` (e.g. `openai:gpt-4o`).
    - `provider` string, required — Model vendor, e.g. `openai` or `anthropic`.
    - `name` string, required — Human-readable model name for display.
    - `context_window_tokens` number, required — Maximum context window size in tokens.

## Other responses

- `401` — Unauthorized
- `429` — Rate limit exceeded

---

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