Quick Start
This guide helps you integrate with the OfoxAI Gateway and start calling 100+ LLMs in just 3 minutes.
Prerequisites
- Sign up at the OfoxAI Console and get an API Key
- Have a development environment ready (Python 3.8+ / Node.js 18+)
OfoxAI is compatible with all three major protocols — OpenAI / Anthropic / Gemini. You can use any official SDK to connect.
Choose Your Protocol
OpenAI SDK (Recommended)
OpenAI Compatible Protocol — The most universal integration method.
cURL
Terminal
# OfoxAI API endpoint. Get your API Key at https://app.ofox.ai
curl https://api.ofox.ai/v1/chat/completions \
-H "Authorization: Bearer <your OFOXAI_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.2",
"messages": [
{"role": "user", "content": "What is the meaning of life?"}
]
}'Next Steps
Last updated on