One OpenAI-compatible API, all LLMs at your fingertips.
Frontier Claude model for hard reasoning, large codebases, and agentic work.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-opus-5",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'Cost-efficient Claude tier for high-volume coding, chat, and tool use.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-sonnet-5",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'Cheapest GPT-5.6 tier, for high-volume chat, classification and light agentic work.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.6-luna",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'Flagship GPT-5.6 tier, for long-horizon agentic work, hard reasoning and command-line coding.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.6-sol",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'Mid GPT-5.6 tier, balancing capability against cost for everyday coding, reasoning and tool use.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.6-terra",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'DeepSeek's fast tier, for high-volume work that still wants the million-token window.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek/deepseek-v4-flash",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'DeepSeek's frontier tier, a million-token window at a fraction of frontier prices.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek/deepseek-v4-pro",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'Kimi's dedicated coding model, for instruction-following across a whole repository.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "moonshot/kimi-k2.7-code",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'Moonshot's frontier model, a million-token window for software engineering and deep reasoning.
curl -sS "https://alpha-api.webway.sh/v1/chat/completions" \
-H "Authorization: Bearer " \
-H "Webway-ZDR: required" \
-H "Content-Type: application/json" \
-d '{
"model": "moonshot/kimi-k3",
"messages": [{"role": "user", "content": "Hello!"}],
"max_tokens": 64,
"thinking": {"type": "disabled"}
}'