Supported models
Choose a model below, then run inference with its slug.Context and output limits reflect Baseten’s live serving configuration and can differ from a model’s advertised maximum. Baseten may extend a limit after validating its performance. This table and
/v1/models reflect the current serving configuration.Feature support
All Model APIs support tool calling, structured outputs, and JSON mode. The table lists model-specific support for reasoning, vision, audio, and sampling parameters.Run inference
Choose the OpenAI Chat Completions API or the Anthropic Messages API, then set the base URL, API key, and model slug.Use the OpenAI SDK
The OpenAI Chat Completions API is available athttps://inference.baseten.co/v1/chat/completions.
- Python
- JavaScript
- cURL
- Baseten CLI
To call a model with the Chat Completions API:
chat_completions.py
x-session-affinity value for related requests to improve cached input tokens reuse.
We recommend at most ~60 requests/min sent via the same session.
Use the Anthropic SDK
The Anthropic Messages API is available athttps://inference.baseten.co/v1/messages.
Anthropic Messages API support is in beta. Behavior may change before general availability. For production workloads, use the OpenAI Chat Completions API.
x-api-key by default. Baseten reads Authorization, so override default_headers as shown.
- Python
- JavaScript
- cURL
To call a model with the Messages API:
messages_api.py
List available models
List the current model catalog and metadata, including pricing, context windows, and supported features, withbaseten model-api list or the /v1/models REST endpoint:
baseten model-api describe:
Migrate
To migrate to Baseten, change the base URL, API key, and model name.- OpenAI SDK
- Anthropic SDK
To migrate from the OpenAI SDK:
- Replace your OpenAI API key with a Baseten API key.
- Change the base URL to
https://inference.baseten.co/v1. - Update the model name to a Baseten model slug.
migrate.py
Handle errors
Model APIs return standard HTTP error codes:
Each error response includes a JSON body with details about the failure. See Inference errors for causes and recommended responses.
Next steps
Coding agents
Call Model APIs from Pi, Droid, or OpenCode, or connect Claude Code and Codex CLI with Baseten Switch.
Reasoning
Control extended thinking for complex tasks.
Vision
Send images and videos alongside text.
Audio
Send audio alongside text.
Pricing and limits
Review pricing, rate limits, budgets, and usage tracking.
API reference
Review Chat Completions parameters.