From zero to production in 3 minutes
Sign up and generate your API Key with one click.
Copy the example code, complete integration in 3 minutes.
Integration complete, start building your Agent.
curl -X POST https://api.hao.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $HAOAI_API_KEY" \
-d '{
"model": "openai/gpt-5.4",
"messages": [
{"role": "user", "content": "Hello World!"}
]
}'