Skip to content

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:

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.

Terminal window
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.

This site documents Supado-specific usage. For the full OpenAI request and response schema, refer to the official OpenAI documentation.