API reference · Media

Video · job status

Poll an async render until the clip is ready.

GET/v1/videos/generations/{id}free
view as markdown

Free to call, as often as you like — every few seconds is the intended cadence. status walks processingsucceeded (the clip is in data, exactly the shape image generation uses) or failed (an error object explains, and the credits were already refunded).

Job ids are scoped to your account and expire 24 hours after creation; persist the clip (yours to keep, or store: true at submit) before then.

curl https://eroq.ai/v1/videos/generations/{id} \
  -H "Authorization: Bearer $EROQ_API_KEY"
/v1/videos/generations/{id}
→ GET /v1/videos/generations/0b52…
Press run — this replays a real exchange from the docs' own data. No key, no request, no charge.

Response

200 · application/json
{
  "id": "b7e6c2d4-…",
  "object": "video.generation",
  "status": "succeeded",
  "created": 1756118400,
  "model": "eroq-motion-one",
  "duration": "5s",
  "data": [{ "b64_json": "AAAAIGZ0eXBpc281…", "content_type": "video/mp4" }],
  "usage": { "credits_spent": 100, "credits_remaining": 887 }
}