Skip to content

API Overview

CAVOS Agents provides an OpenRouter-style API proxy for accessing AI models. Authenticate with sk_live_* API keys and use familiar chat completion endpoints.

https://cavos.org/api/v1

All API requests require a valid API key in the Authorization header:

Terminal window
curl https://cavos.org/api/v1/chat/completions \
-H "Authorization: Bearer sk_live_abc123..." \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4o-mini",
"messages": [{"role": "user", "content": "Hello!"}]
}'
MethodPathDescription
POST/v1/chat/completionsChat completions (streaming & non-streaming)
GET/api/modelsList available models
GET/api/providersList model providers
GET/api/keysList your API keys
POST/api/keysCreate a new API key

Rate limits are applied per API key. Default limits are sufficient for most use cases. Contact support for higher limits.

All API usage is deducted from your credit balance. You must maintain a minimum $0.50 balance to make API requests. See Credits for details.