Ambient exposes an OpenAI-compatible API and an Anthropic-compatible API, so
existing SDKs and tools work by swapping the base URL: point OpenAI-style
clients at https://api.ambient.xyz/v1, and point the Anthropic SDK at
https://api.ambient.xyz (the SDK appends the /v1 itself). You'll need an
API key, which you create in the Ambient app.
Where to go#
Developers building against the API are in the right place: keep reading, then see Learn for how verification works. If you want chat, research, keys, and billing in the web app, that lives under Use Ambient. Mining is live in curated waves; Run a node covers hardware and onboarding. Organizations evaluating Ambient should start with Enterprise for posture and deployment.
See what's available#
The model catalog endpoint requires no authentication, so you can explore the network before creating a key:
curl https://api.ambient.xyz/v1/modelsEach model entry includes pricing, context limits, and capability flags.
Anything listed is served: GLM 5.2 (ambient/large) is the supported
production model, and other listed models may be previews with no
guarantees. The is_ready field is an OpenRouter routing flag, not an
availability signal, so don't gate on it.
Endpoints at a glance#
| Endpoint | Auth | Purpose |
|---|---|---|
GET /v1/models | None | List models, pricing, and capabilities |
POST /v1/chat/completions | Bearer key | OpenAI-compatible chat completions |
POST /v1/messages | Bearer key | Anthropic-compatible messages |
Next steps#
Create an API key in the Ambient app and run the quickstart. The model catalog shows what's serving today, and Learn explains how Proof of Logits verification works.