Gateway

API Reference

Use one bearer token to talk to chat completions, grammar checking, PII detection, and audio services — with consistent accounting, rate limits and vendor-agnostic routing.

TL;DR

You're going to Ctrl-F for curl anyway, so here it is. Grab an API token from the portal and call any endpoint with Authorization: Bearer inf_....

bash
curl https://api.inferada.com/v1/chat/completions \
  -H "Authorization: Bearer inf_YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3.5-35b",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'

Endpoints

Guides

Ready to build?

Head to the portal to create your first API token.

Open the portal