Cancel a video generation job that is still in progress.
POST /api/v1/jobs/{job_id}/stop
job_id (string, required) — The job ID to cancelX-API-Key (string, required) — Your API key200 OK{
"job_id": "abc123-def456-ghi789",
"status": "cancelled",
"message": "Job cancellation requested",
"was_processing": true
}job_id (string) — The job identifier.status (string) — Current job status after the stop request.message (string) — Human-readable status message.was_processing (boolean) — true if the job was actively processing when cancelled.Cancellation is graceful — the worker stops at the next checkpoint. Jobs that are already completed or failed cannot be cancelled.