Documentation Index
Fetch the complete documentation index at: https://docs.oxen.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Video generation can take minutes. The async queue returns immediately with a generation ID so you can avoid long-lived HTTP connections, run generations in parallel, and build progress-tracking UIs. You can either poll the queue or use SSE to receive events when generations complete.Enqueue a Job
Poll Until Done
Poll a generation by ID until itsstatus reaches a terminal value (succeeded, failed, or cancelled). The response includes result_url on success and error_message on failure.
GET /ai/queue to see how many are still in progress:
Fetch a Single Job
Use the generation ID to get a specific job’s full status, includingresult_url on success:
What’s Next
- Async Queue Reference for the full parameter list, polling details, and cancellation
- Video Generation Quick Start for the synchronous counterpart
- Model API References for per-model parameters you can pass through the queue