Skip to Content

Quick Start

This guide helps you integrate with the OfoxAI Gateway and start calling 100+ LLMs in just 3 minutes.

Prerequisites

  1. Sign up at the OfoxAI Console  and get an API Key
  2. 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 Compatible Protocol — The most universal integration method.

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