Tasks

Get async task status

get

Get task status and result by task_address.

Poll this endpoint to check progress of async tasks. No authentication required - the task_address itself is the auth token.

Does not count toward rate limit.

Status Values

  • running - Task is being processed

  • completed - Task finished successfully, result in response

  • failed - Task failed, error message in response

Example Response (running)

{
    "task_address": "direct:a1b2c3d4-...",
    "status": "running",
    "elapsed_seconds": 45,
    "mode": "direct",
    "model": "Wan-AI/Wan2.5-T2V"
}

Example Response (completed)

Example Response (failed)

Path parameters
task_addressstringRequired
Responses
chevron-right
200

Successful Response

application/json
get
/v2/tasks/{task_address}

Last updated