Skip to main content
POST
/
api
/
v1
/
tasks
/
{id}
/
retry
Retry Task
curl --request POST \
  --url https://api.modelhunter.ai/api/v1/tasks/{id}/retry \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "task_new789",
    "original_task_id": "task_abc123",
    "status": "pending",
    "type": "video",
    "provider": "vidu",
    "model": "viduq3-turbo",
    "created_at": "2026-01-15T12:00:00Z"
  }
}

Path Parameters

id
string
required
The ID of the failed task to retry.

Notes

  • Tasks with status failed or expired can be retried.
  • A new task is created with the same provider, model, and input parameters.
  • Your balance will be charged again for the new task.
  • The original task remains unchanged.
{
  "success": true,
  "data": {
    "id": "task_new789",
    "original_task_id": "task_abc123",
    "status": "pending",
    "type": "video",
    "provider": "vidu",
    "model": "viduq3-turbo",
    "created_at": "2026-01-15T12:00:00Z"
  }
}