Seededit 3.0 I2i is a ByteDance Doubao model exposed on the Huzz API with a single Huzz key and one consistent, OpenAI-compatible interface. Capabilities: Image editing. 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
ByteDance DoubaoImage editingNoYesUsage-based

Endpoints

MethodPathCapability
POST/api/v3/doubao/seededit-3-0-i2i-250628/image-editImage editing

Code samples

Authenticate with Authorization: Bearer $HUZZ_API_KEY — get a key at huzz.ai/register.
# 1) Submit the job
curl https://api.huzz.ai/api/v3/doubao/seededit-3-0-i2i-250628/image-edit \
  -H "Authorization: Bearer $HUZZ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"image":"https://example.com/product-photo.png"}}'

# 2) Poll for the result
curl https://api.huzz.ai/api/v3/predictions/PREDICTION_ID/result \
  -H "Authorization: Bearer $HUZZ_API_KEY"
Long-running jobs return a prediction id. See Async predictions for the full submit-and-poll lifecycle.