1. Get an API key
Sign up at huzz.ai/register, then request an API key from the Huzz team at support@huzz.ai — during early access, keys are issued by the team, with self-serve key management on the way. The raw key is shared once when it is issued — copy it and store it as an environment variable:2. Point any OpenAI SDK at Huzz
Huzz speaks the OpenAI wire format, so the official OpenAI SDKs work unchanged. Set the base URL tohttps://api.huzz.ai/v1 and pass your Huzz key:
Authorization: Bearer $HUZZ_API_KEY header.
3. Make your first chat call
"gpt-4o" for any model id in the catalog — Claude, Gemini, Grok, DeepSeek, Qwen, and more — without touching the rest of your code.
Next steps
- Browse the model catalog — 267 models with per-model endpoints and samples.
- Stream responses — token-by-token output with
stream: true. - Run async jobs — video, audio, and other long-running generations.
- Handle errors — status codes and retry guidance.