Skip to content

API Reference Overview

Supado exposes an OpenAI-compatible API surface at:

https://supado.com/v1

This reference documents Supado-specific conventions and common endpoints. It does not duplicate the full OpenAI API schema.

FieldValue
Base URLhttps://supado.com/v1
AuthenticationAuthorization: Bearer <SUPADO_API_KEY>
Request bodyJSON
Streaming transportServer-Sent Events when stream: true is supported
  • Use server-side code or a trusted backend.
  • Store the API key in an environment variable or secrets manager.
  • Use a model available to your Supado account.
  • Add explicit timeout and retry behavior in production clients.
Terminal window
curl https://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": "Return a JSON checklist for API integration." }
]
}'
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.SUPADO_API_KEY,
baseURL: "https://supado.com/v1",
});

Supado aims to work with common OpenAI SDK flows by changing the SDK baseURL. Endpoint support, optional request fields, response metadata, streaming behavior, and model availability can vary by account, model, or upstream provider.

When in doubt, keep your first request small and inspect the Supado request log before moving production traffic.