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

/v1/audio-isolation/history

ElevenLabs API

Get Audio Isolation History

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
→ 216 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/audio-isolation/history?page_size=100&page=1&search=example-search' \  -H "xi-api-key: $ELEVENLABS_API_KEY"
Get a free ElevenLabs API key → sponsored

Parameters

Name In Type Required Description
page_size query integer No How many history items to return at maximum. Defaults to 100.
page query integer No Page number for search pagination (1-based). Only used when search is provided.
search query string No Optional search term used for filtering audio isolation history (title/text).

Response 200 OK

{
  "items": [
    {
      "id": "string",
      "title": "string",
      "created_at_unix": 0,
      "format": "string",
      "duration_seconds": 0,
      "download_url": "string",
      "icon_url": "string",
      "source_video_url": "string",
      "supports_video": true,
      "processing": true,
      "video_processing_failed": true,
      "preview_b64": "string"
    }
  ],
  "has_more": true
}