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

# List Models

`GET /v1/models`

List available Anthropic-compatible models.

Authentication is optional. Anonymous callers receive the public runtime
catalog; authenticated callers also receive their user-scoped decoder
fine-tunes.

Args:
    limit: Maximum number of models to return. Omit to return the full
        assembled catalog.
    before_id: Cursor for paginating backward.
    after_id: Cursor for paginating forward.
    client_version: Optional Codex/OpenAI client version hint.
    auth: Optional authentication result.

Returns:
    Combined Anthropic-compatible and Codex/OpenAI-compatible model catalog.

Raises:
    HTTPException: If both cursor parameters are provided.

## Query parameters

- `limit` integer, nullable
- `before_id` string, nullable
- `after_id` string, nullable
- `client_version` string, nullable

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/pioneer/apis/brain-api.md) · [All operations](https://skmtc.net/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pioneer/brain-api/revisions/31dfe831e079/schema)
