Supado Docs
Supado is an OpenAI-compatible API gateway for unifying model calls, request logs, and account-level usage tracking.
Choose the path that matches your current task:
First time using Supado
Section titled “First time using Supado”- Quickstart - Send your first request.
- Authentication - Create and store API keys safely.
- Usage, Billing, and Logs - Verify that requests are recorded.
Before you start
Section titled “Before you start”If you are evaluating Supado, complete one minimal request before reading the API reference. This confirms three things early: your account works, your API key is valid, and the model name is available in your console.
curl https://api.supado.com/v1/chat/completions \ -H "Authorization: Bearer $SUPADO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-4o-mini", "messages": [ { "role": "user", "content": "Reply with: supado-ready" } ] }'After the request, check:
- The response includes
choices[0].message.content. - The console logs show the request.
- Usage reporting shows the expected model, time, and token count.
Migrating existing OpenAI SDK code
Section titled “Migrating existing OpenAI SDK code”- Migrate from OpenAI - Change
baseURLandapiKey. - Chat Completions - Call the compatible endpoint.
- Errors - Handle common failure states.
Production usage
Section titled “Production usage”- Streaming Responses - Consume Server-Sent Events correctly.
- Troubleshooting - Collect useful context before contacting support.
- Usage, Billing, and Logs - Reconcile usage and investigate anomalies.
This site documents Supado-specific usage. For the full OpenAI request and response schema, refer to the official OpenAI documentation.