Overview
ApiGo exposes major model protocols through one gateway. Start from the protocol your SDK already speaks, then open the matching operations in API Reference.
Base URL
https://api.apigo.ai
Append the path for the operation you need, for example:
https://api.apigo.ai/v1/chat/completions
SDK base_url / baseURL values are usually the versioned root:
https://api.apigo.ai/v1
Authentication
Authorization: Bearer <APIGO_API_KEY>
Create keys in Workspace → API Keys.
Protocol map
| Protocol family | Typical paths | Good for |
|---|---|---|
| OpenAI Chat Completions | POST /v1/chat/completions |
Drop-in OpenAI SDK chat |
| OpenAI Responses | POST /v1/responses |
Structured / multimodal-oriented workflows |
| OpenAI Images | /v1/images/generations, /v1/images/edits |
Image generation and edits |
| OpenAI Videos | /v1/videos, /v1/videos/{id}, /v1/videos/{id}/content |
Async video jobs |
| Anthropic Messages | POST /v1/messages |
Claude-native clients and Claude Code |
| Gemini | /v1beta/models/{model}:generateContent and stream / long-running variants |
Google-native clients |
Suggested reading order
- Finish the Quickstart.
- Confirm rate limits and error handling.
- Open the exact operation in API Reference.
- Mirror production behavior in Chat and verify with Call Logs.
