o3 Deep Research is an OpenAI model exposed on the Huzz API with a single Huzz key and one consistent, OpenAI-compatible interface. Capabilities: File analysis, Vision, Chat, Web search. It supports streaming responses. Long-running jobs run asynchronously with polling. Call it at https://api.huzz.ai using Authorization: Bearer $HUZZ_API_KEY — no per-provider accounts or SDKs required.
FamilyCapabilitiesStreamingAsyncPricing
OpenAIFile analysis, Vision, Chat, Web searchYesYesUsage-based

Endpoints

MethodPathCapability
POST/api/v3/openai/o3-deep-research/file-analysisFile analysis
POST/api/v3/openai/o3-deep-research/image-to-textVision
POST/api/v3/openai/o3-deep-research/text-to-textChat
POST/api/v3/openai/o3-deep-research/web-searchWeb search

Code samples

Authenticate with Authorization: Bearer $HUZZ_API_KEY — get a key at huzz.ai/register.
curl https://api.huzz.ai/v1/chat/completions \
  -H "Authorization: Bearer $HUZZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "o3-deep-research",
    "messages": [{"role": "user", "content": "Hello from Huzz!"}]
  }'
Long-running jobs return a prediction id. See Async predictions for the full submit-and-poll lifecycle. This model supports token streaming — see the Streaming guide.