POST /v1/chat/completions— OpenAI Chat Completions (drop-in for any OpenAI SDK)POST /v1/responses— OpenAI Responses APIPOST /v1/messages— Anthropic Messages API (drop-in for theanthropicSDK)POST /v1beta/models/{model}:generateContent— Gemini-native generateContentPOST /v1/audio/transcriptions— completed-file speech-to-textPOST /v1/images/generations— OpenAI Images (image output)
provider/model convention, e.g. anthropic/claude-sonnet-4-5.
See GET /v1/models for the full list and pricing.
Beyond text, every surface accepts image input, Gemini models accept
audio and video input, and every surface supports
tool calling in relay mode. Chat output is text; images are
generated through openai/gpt-image-2 and completed audio
files are transcribed with openai/gpt-transcribe.
Agent-first
Everything is built so an agent can self-serve with no human in the loop:- Machine docs at
/llms.txtand/openapi.yaml. - Executable agent onboarding declared at
/auth.md, with OAuth protected-resource metadata at/.well-known/oauth-protected-resource. POST /v1/accountscreates a funded account and returns an API key in one call.
Agent quickstart
Register a funded account and make your first call in two requests.

