Docs

Ambient docs

Ambient Documentation

Quickstarts, API guides, and node setup for the verified-inference network, generated from live sources.

Start here

Make your first call

Full quickstart
# max_tokens caps reasoning + answer — reasoning models need headroom
curl https://api.ambient.xyz/v1/chat/completions \
  -H "Authorization: Bearer $AMBIENT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "ambient/large",
    "messages": [{"role": "user", "content": "Say hello from Ambient."}],
    "max_tokens": 512
  }'

Browse the docs