Seedream
Retrieve a Seedream image task
Use CometAPI GET /v1/images/generations/ to poll an async Seedream image generation task and retrieve final image data.
GET
cURL
Use this endpoint after you create a Seedream image with
POST /v1/images/generations and async: true. The create request returns data.task_id, and this endpoint returns the task state plus final image data when the task succeeds.
Poll a Seedream image task
Status values
pending: The task is queued or generating.success: The task finished anddata.datacontains the generated image data.failure: The task failed. Checkdata.fail_reasonwhen it is returned.
Authorizations
Bearer token authentication. Use your CometAPI key.
Path Parameters
Task ID returned in data.task_id by the async create request.