3 Steps to Ship Your Agent
Zero to production in 3 minutes
1Get API Key
Sign up and generate your API key with one click.
2Integrate
Copy sample code and complete integration in 3 minutes.
3Start Building
You're in. Start building your Agent.
curl -X POST https://api.ofox.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OFOXAI_API_KEY" \
-d '{
"model": "openai/gpt-4o",
"messages": [
{"role": "user", "content": "Hello World!"}
]
}'