v1

latestOpenAPI 3.1.0MIT2026-07-262861121.0 KB

Check the status of an asynchronous Midjourney image generation task

post/check-midjourney-status

Request body

task_idstring required

The unique identifier for the Midjourney generation task.

Example request

{
  "task_id": "1744449927914205"
}

Response

Midjourney task status response

status'SUCCESS' | 'FAILED' | 'PENDING' | 'RUNNING' | 'IN_PROGRESS' | 'submitted' | 'NOT_START' | 'unknown' required

The current status of the Midjourney task.

task_idstring required

The unique identifier for the Midjourney generation task.

progressstring nullable

Optional progress indicator (e.g., "0%")

imageUrlstring uri nullable

The URL of the generated image (present on SUCCESS).

failReasonstring nullable

The reason for failure (present on FAILED).

Example response

{
  "status": "SUCCESS",
  "task_id": "1744449927914205",
  "progress": "50%",
  "imageUrl": "https://image-url.com/generated_image.png",
  "failReason": "Content moderation filter triggered."
}