check_job_status
Check the status of image generation or editing jobs by providing the job ID and endpoint type. Returns current status and result URL when completed.
Instructions
Check the status of a previously submitted job.
Use this tool to monitor long-running jobs or check on jobs that timed out. Works for both image generation (Seedream) and image editing (Nano Banana) jobs.
Args: job_id: Job ID returned from generate_image or edit_image. Format: typically a UUID like "abc123-def456" endpoint_type: Which API the job was submitted to: - "seedream": For text-to-image generation jobs - "nano_banana": For image editing jobs
Returns: Current job status with result URL if completed. Possible statuses: IN_QUEUE, IN_PROGRESS, COMPLETED, FAILED
Examples: - Check a generation job: check_job_status("abc123-def456", "seedream") - Check an editing job: check_job_status("xyz789-ghi012", "nano_banana")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | ||
| endpoint_type | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |