Skip to main content
POST
/
videos
Submit video generation job
curl --request POST \
  --url https://api.runcrate.ai/v1/videos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "prompt": "<string>",
  "duration_seconds": 123,
  "image_url": "<string>",
  "aspect_ratio": "16:9"
}
'
{
  "id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://runcrate.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Runcrate API key with the rc_live_* prefix as the bearer token. Create one at https://www.runcrate.ai/dashboard/api-keys.

Body

application/json
model
string
required

Video model id (e.g. openai/sora-2).

prompt
string
required
duration_seconds
integer

Seconds; varies by model.

image_url
string<uri>

Optional image-to-video reference.

aspect_ratio
string
Example:

"16:9"

Response

Video job queued. Poll GET /videos/{id} for status.

id
string
required

Job id to poll.

status
enum<string>
required
Available options:
queued,
processing,
completed,
failed