API reference · Media

Video · render queue

List the workspace's render jobs of the last 24 hours.

GET/v1/videos/generationsfree

Free to call. Returns every job the WORKSPACE submitted in the last 24 hours, newest first — teammates' renders included. This is exactly what the studio's topbar queue is built on.

List entries never carry inline base64 media: a succeeded job exposes data only when the clip lives at a URL. Fetch GET /v1/videos/generations/{id} for the full payload.

Query parameters

limitinteger

Jobs to return, 1–50. Default 20.

statusstring

Filter: processing, succeeded or failed.

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

Response

200 · application/json
{
  "object": "list",
  "data": [
    {
      "id": "b7e6c2d4-…",
      "object": "video.generation",
      "status": "processing",
      "created": 1756118400,
      "model": "eroq-motion-one",
      "duration": "5s",
      "prompt": "slow pan over a rooftop bar at dusk",
      "poll": "/v1/videos/generations/b7e6c2d4-…"
    }
  ]
}