Guides
Text to Speech
Speech to Speech
History
Voices
Voice Generation
Voice Library
Projects
Pronunciation Dictionaries
Models
Audio-native
History
Get History Item By Id
Returns information about an history item by its ID.
GET
/
v1
/
history
/
{history_item_id}
Copy
Ask AI
curl --request GET \
--url https://api.elevenlabs.io/v1/history/{history_item_id}
Copy
Ask AI
{
"history_item_id": "<string>",
"request_id": "<string>",
"voice_id": "<string>",
"model_id": "<string>",
"voice_name": "<string>",
"voice_category": "premade",
"text": "<string>",
"date_unix": 123,
"character_count_change_from": 123,
"character_count_change_to": 123,
"content_type": "<string>",
"state": "created",
"settings": {},
"feedback": {
"thumbs_up": true,
"feedback": "<string>",
"emotions": true,
"inaccurate_clone": true,
"glitches": true,
"audio_quality": true,
"other": true,
"review_status": "not_reviewed"
},
"share_link_id": "<string>",
"source": "TTS",
"alignments": {
"alignment": {
"characters": [
"<string>"
],
"character_start_times_seconds": [
123
],
"character_end_times_seconds": [
123
]
},
"normalized_alignment": {
"characters": [
"<string>"
],
"character_start_times_seconds": [
123
],
"character_end_times_seconds": [
123
]
}
}
}
Headers
Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.
Path Parameters
History item ID to be used, you can use GET https://api.elevenlabs.io/v1/history to receive a list of history items and their IDs.
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.elevenlabs.io/v1/history/{history_item_id}
Copy
Ask AI
{
"history_item_id": "<string>",
"request_id": "<string>",
"voice_id": "<string>",
"model_id": "<string>",
"voice_name": "<string>",
"voice_category": "premade",
"text": "<string>",
"date_unix": 123,
"character_count_change_from": 123,
"character_count_change_to": 123,
"content_type": "<string>",
"state": "created",
"settings": {},
"feedback": {
"thumbs_up": true,
"feedback": "<string>",
"emotions": true,
"inaccurate_clone": true,
"glitches": true,
"audio_quality": true,
"other": true,
"review_status": "not_reviewed"
},
"share_link_id": "<string>",
"source": "TTS",
"alignments": {
"alignment": {
"characters": [
"<string>"
],
"character_start_times_seconds": [
123
],
"character_end_times_seconds": [
123
]
},
"normalized_alignment": {
"characters": [
"<string>"
],
"character_start_times_seconds": [
123
],
"character_end_times_seconds": [
123
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.