Ideogram Generate V3 is an Ideogram model exposed on the Huzz API with a single Huzz key and one consistent, OpenAI-compatible interface. Capabilities: Image generation. 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
IdeogramImage generationYesYesUsage-based

Endpoints

MethodPathCapability
POST/api/v3/ideogram/ideogram-generate-v3/text-to-imageImage generation

Code samples

Authenticate with Authorization: Bearer $HUZZ_API_KEY — get a key at huzz.ai/register.
curl https://api.huzz.ai/v1/images/generations \
  -H "Authorization: Bearer $HUZZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "ideogram-generate-v3", "prompt": "A serene mountain lake at dawn"}'
Long-running jobs return a prediction id. See Async predictions for the full submit-and-poll lifecycle.