GET
GET /v1/flows/templates/{template_id} — ElevenLabs API
ElevenLabs APIGet Template
- Base URL
- https://api.elevenlabs.io
- Auth
- xi-api-key: <ELEVENLABS_API_KEY>
- Last verified
- 2026-09-22 · upstream hash matched
Actions Try in browser→
Agents: curl -H "Accept: text/markdown" this URL
→ 192 tokens · Vary: Accept
→ 192 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/templates/template-id?versions_per_template=10' \ -H "xi-api-key: $ELEVENLABS_API_KEY"
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| template_id | path | string | Yes | The ID of the template, as shown in the ElevenLabs app or by `GET /v1/flows/templates`. |
| versions_per_template | query | integer | No | How many of each template's published versions to return, newest first. `has_more_versions` tells you when a template has more. |
Response 200 OK
{
"id": "string",
"name": "string",
"description": "string",
"versions": [
{
"version_id": "string",
"published_at_unix": 0,
"is_latest": true,
"inputs": [
{
"id": "string",
"content_schema": {
"title": "[recursive or deeply nested schema]",
"description": "[recursive or deeply nested schema]",
"type": "[recursive or deeply nested schema]",
"enum": "[recursive or deeply nested schema]"
}
}
],
"outputs": [
{
"id": "string",
"content_schema": {
"title": "[recursive or deeply nested schema]",
"description": "[recursive or deeply nested schema]",
"type": "[recursive or deeply nested schema]",
"enum": "[recursive or deeply nested schema]"
}
}
]
}
],
"has_more_versions": true
} Get a free ElevenLabs API key → sponsored