Video Generation Alias
/v1/video/generations path.
Authentication
When To Use It
- your client is hardcoded to
/v1/video/generations - you are migrating an older video workflow and do not want to change the path
- you need to preserve compatibility with an existing third-party request shape
POST /v1/videos: closer to the official OpenAI video formatPOST /v1/video/create: Crazyrouter’s unified video format
Minimal Request Example
cURL
Typical Success Response
Error Response Verified Locally
On the localhttp://127.0.0.1:4000 environment, this route was verified to exist. When the model is temporarily unavailable, it returns a business error rather than 404:
Notes
- request fields vary by video model and upstream capability
- model availability depends on the token whitelist and current upstream state
- after task creation, query status with
GET /v1/video/generations/{task_id}
This route is a compatibility alias. It does not guarantee that every video model shares the exact same body schema. If you are starting fresh and do not need legacy path compatibility, prefer
/v1/videos or /v1/video/create.