apicheats.dev elevenlabs/llms.txt Raw .md
GET

/v1/flows/video

ElevenLabs API

List Video Generations

Base URL
https://api.elevenlabs.io
Auth
xi-api-key: <ELEVENLABS_API_KEY>
Last verified
2026-09-03 · upstream hash matched
Actions
Agents: curl -H "Accept: text/markdown" this URL
→ 228 tokens · Vary: Accept

Critical gotchas

Authentication uses the non-standard xi-api-key header, not Authorization: Bearer. Sending a Bearer token returns HTTP 401.

Text-to-speech responses are raw binary audio, not JSON. Write the body to a file (--output speech.mp3) rather than parsing it.

cURL

curl -X GET 'https://api.elevenlabs.io/v1/flows/video?cursor=example-cursor&page_size=30&status=pending&model_id=model-id' \  -H "xi-api-key: $ELEVENLABS_API_KEY"
Get a free ElevenLabs API key → sponsored

Parameters

Name In Type Required Description
cursor query string No Pagination cursor: the `next_cursor` value of the previous page's response. Omit it for the first page.
page_size query integer No How many generations to return per page.
status query string No Only return generations with this lifecycle status.
model_id query string No Only return generations of this model.

Response 200 OK

{
  "generations": [
    {
      "content_mime_type": "video/mp4",
      "content_url": "https://storage.googleapis.com/generations/JWr5N6X9ZTqf8jD2LmQb",
      "id": "JWr5N6X9ZTqf8jD2LmQb",
      "status": "completed"
    },
    {
      "id": "Kx2mP7Y4WVrg9kE3NnRc",
      "status": "generating"
    }
  ],
  "has_more": true,
  "next_cursor": "MjAyNi0wNy0xN1QxMjowMDowMHxLeDJtUDdZNFdWcmc5a0UzTm5SYw"
}