Ringside documentation
Ringside is an OpenAI-compatible API across 19 model providers, with a per-customer spend-metering layer your own product can bill on top of. Point an SDK at the base URL, attach a customer header and you are live. Read a concept to build the mental model, follow a guide to ship a feature, or jump to the endpoint reference.
curl https://api.fightclub.pro/v1/chat/completions \
-H "Authorization: Bearer $FC_API_KEY" \
-H "FC-Customer: cus_42" \
-H "Content-Type: application/json" \
-d '{"model":"fc:openai/gpt-4o-mini","messages":[{"role":"user","content":"Hello"}]}'Create a key in the dashboard, export it as FC_API_KEY, and run the call above.
Understand what Ringside is, how a request flows through it, and make your first authenticated call.
The ideas behind the API. Read these to build a correct mental model before wiring code.
Task-oriented recipes. Each one starts from a goal and ends with working code.
Production guidance distilled from how the platform is meant to be run.
Lookup tables and exact values. The endpoint reference lives under its own section in the sidebar.
Every endpoint with full parameters, headers, response fields, error tables and related routes.