All Models

Browse available models, pricing, and capabilities.

anthropic/claude-sonnet-4.6

anthropic/claude-sonnet-4.6

Context

1000k

Provider

Anthropic

Input
$3.00/1M $1.20/1M
Output
$15.00/1M $6.00/1M

anthropic/claude-opus-4.6

anthropic/claude-opus-4.6

Context

1000k

Provider

Anthropic

Input
$5.00/1M $2.00/1M
Output
$25.00/1M $10.00/1M

Alibaba/qwen3.5

Alibaba/qwen3.5

Context

128k

Provider

Alibaba

Input
$0.40/1M $0.35/1M
Output
$0.60/1M $0.55/1M

z-ai/glm-5

z-ai/glm-5

Context

203k

Provider

Z.ai

Input
$1.00/1M $0.60/1M
Output
$3.20/1M $1.80/1M

openai/gpt-5.2-codex

openai/gpt-5.2-codex

Context

400k

Provider

OpenAI

Input
$1.75/1M $0.70/1M
Output
$14.00/1M $5.60/1M

kimi-k2.5

kimi-k2.5

Context

128k

Provider

MoonShot

Input
$0.90/1M $0.36/1M
Output
$3.50/1M $1.40/1M

openai/gpt-4o

openai/gpt-4o

Context

128k

Provider

OpenAI

Input
$2.50/1M $1.00/1M
Output
$7.50/1M $3.00/1M

deepseek/deepseek-v3.2

deepseek/deepseek-v3.2

Context

164k

Provider

DeepSeek

Input
$0.61/1M $0.24/1M
Output
$0.91/1M $0.36/1M

google/gemini-3

google/gemini-3

Context

1000k

Provider

Google

Input
$1.90/1M $0.76/1M
Output
$11.90/1M $4.76/1M

anthropic/claude-sonnet-4.5

anthropic/claude-sonnet-4.5

Context

1000k

Provider

Anthropic

Input
$3.00/1M $1.20/1M
Output
$15.00/1M $6.00/1M

anthropic/claude-opus-4.5

anthropic/claude-opus-4.5

Context

200k

Provider

Anthropic

Input
$5.00/1M $2.00/1M
Output
$25.00/1M $10.00/1M

openai/gpt-5

openai/gpt-5

Context

400k

Provider

OpenAI

Input
$1.25/1M $0.50/1M
Output
$10.00/1M $4.00/1M

Quick Start

OpenAI Compatible

Get your API key from your dashboard.

Python / OpenAI SDK
# Install: pip install openai
from openai import OpenAI

client = OpenAI(
    api_key="cx-your-api-key",
    base_url="https://dash.codestorex.com/v1"
)

response = client.chat.completions.create(
    model="openai/gpt-4o",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True
)

for chunk in response:
    print(chunk.choices[0].delta.content, end="")
cURL / HTTP
curl https://dash.codestorex.com/v1/chat/completions \
  -H "Authorization: Bearer cx-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4o",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

# List all available models:
curl https://dash.codestorex.com/v1/models \
  -H "Authorization: Bearer cx-your-api-key"

OpenAI Compatible

Drop-in replacement for OpenAI. Works with any OpenAI SDK or tool.

Streaming Support

Full SSE streaming support for real-time responses.

Bearer Auth

Secure API key authentication via Authorization header.