Models

One API. Every frontier model.

Routed through the prix proxy. Auth, billing, retries, and streaming handled once — point any agent at api.prix.dev and pick a model by ID.

# List every model the proxy routes
rush http GET /api/v1/models

# Call any of them — same OpenAI-compatible payload
rush http POST /api/v1/chat/completions -d '{
  "model": "anthropic/claude-sonnet-4.5",
  "messages": [{"role": "user", "content": "ship it"}],
  "stream": true
}'

Anthropic

Claude family. Long-context reasoning, tool use, vision. Routed via OpenRouter.

anthropic/claude-opus-4.5via openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
Yes
Pricing (per million tokens)
in $15.00out $75.00
anthropic/claude-sonnet-4.5via openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
Yes
Pricing (per million tokens)
in $3.00out $15.00
anthropic/claude-sonnet-4via openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
Yes
Pricing (per million tokens)
in $3.00out $15.00
anthropic/claude-haiku-4.5via openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
Yes
Pricing (per million tokens)
in $1.00out $5.00

OpenAI

GPT family. Routed directly, not through a meta-router.

openai/gpt-5-codexvia openai
Context
256K tokens
Streaming
Yes
Tool use
Yes
Vision
No
Pricing (per million tokens)
in $1.25out $10.00

Moonshot

Kimi K2 line. Long context, reasoning traces, cheap inference. Routed via OpenRouter.

moonshotai/kimi-k2.5via openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
Yes
Pricing (per million tokens)
in $0.45out $2.25
moonshotai/kimi-k2-thinkingvia openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
No
Pricing (per million tokens)
in $0.40out $1.75
Includes reasoning traces
moonshotai/kimi-k2-thinking-turbovia openrouter
Context
200K tokens
Streaming
Yes
Tool use
Yes
Vision
No
Pricing (per million tokens)
in $1.15out $8.00
Includes reasoning traces

MiniMax

M2 series. Reasoning-first models at low per-token cost. Routed via OpenRouter.

minimax/minimax-m2.5via openrouter
Context
256K tokens
Streaming
Yes
Tool use
Yes
Vision
No
Pricing (per million tokens)
in $0.30out $1.20
Includes reasoning traces

Ollama (self-hosted)

Local-only models. Zero per-token cost, billed by compute time on your own host.

ollama/ministral-3via ollama
Context
32K tokens
Streaming
Yes
Tool use
Yes
Vision
No
Pricing (per million tokens)
in freeout free
ollama/qwen3.6:35bvia ollama
Context
128K tokens
Streaming
Yes
Tool use
Yes
Vision
Yes
Pricing (per million tokens)
in freeout free
Includes reasoning traces

Image and video models too

The proxy also routes Replicate image models (Nano Banana, Flux Kontext) and video models (Kling v2.6) under the same auth and billing flow.

Read the quickstart