For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Start buildingGet support
DocumentationAPI ReferenceChangelogDiscord
  • Voices
    • POSTCreate voice
    • GETList voices
    • DELDelete voice
  • Text-to-Speech (TTS)
    • WSSStream Input
    • STREAMText-to-Speech (Streamed JSON)
    • POSTText-to-Speech (Streamed File)
    • POSTText-to-Speech (Json)
    • POSTText-to-Speech (File)
    • POSTVoice Conversion (Streamed File)
    • STREAMVoice Conversion (Streamed JSON)
  • Speech-to-speech (EVI)
    • WSSChat
      • GETList chat_groups
      • GETGet chat_group
      • GETGet chat group audio
      • GETList chat events from a specific chat_group
  • Expression Measurement API
Start buildingGet support
LogoLogo
LogoLogo
Speech-to-speech (EVI)Chat Groups

Get chat group audio

GET
https://api.hume.ai/v0/evi/chat_groups/:id/audio
GET
/v0/evi/chat_groups/:id/audio
$curl -G https://api.hume.ai/v0/evi/chat_groups/your-chat-group-id/audio \
> -H "X-Hume-Api-Key: <apiKey>" \
> -d page_number=0 \
> -d page_size=10 \
> -d ascending_order=true
200Retrieved
1{
2 "audio_reconstructions_page": [
3 {
4 "id": "470a49f6-1dec-4afe-8b61-035d3b2d63b0",
5 "status": "COMPLETE",
6 "user_id": "e6235940-cfda-3988-9147-ff531627cf42",
7 "filename": "e6235940-cfda-3988-9147-ff531627cf42/470a49f6-1dec-4afe-8b61-035d3b2d63b0/reconstructed_audio.mp4",
8 "modified_at": 1729875432555,
9 "signed_audio_url": "https://storage.googleapis.com/...etc.",
10 "signed_url_expiration_timestamp_millis": 1730232816964
11 }
12 ],
13 "id": "369846cf-6ad5-404d-905e-a8acb5cdfc78",
14 "num_chats": 1,
15 "page_number": 0,
16 "page_size": 10,
17 "pagination_direction": "ASC",
18 "total_pages": 1,
19 "user_id": "e6235940-cfda-3988-9147-ff531627cf42"
20}

Fetches a paginated list of audio for each Chat within the specified Chat Group. For more details, see our guide on audio reconstruction here.

Was this page helpful?
Previous

List chat events from a specific chat_group

Next
Built with

Authentication

X-Hume-Api-Keystring
API Key authentication via header

Path parameters

idstringRequiredformat: "uuid"
Identifier for a Chat Group. Formatted as a UUID.

Query parameters

page_numberintegerOptionalDefaults to 0

Specifies the page number to retrieve, enabling pagination.

This parameter uses zero-based indexing. For example, setting page_number to 0 retrieves the first page of results (items 0-9 if page_size is 10), setting page_number to 1 retrieves the second page (items 10-19), and so on. Defaults to 0, which retrieves the first page.

page_sizeintegerOptional

Specifies the maximum number of results to include per page, enabling pagination. The value must be between 1 and 100, inclusive.

For example, if page_size is set to 10, each page will include up to 10 items. Defaults to 10.

ascending_orderbooleanOptional

Specifies the sorting order of the results based on their creation date. Set to true for ascending order (chronological, with the oldest records first) and false for descending order (reverse-chronological, with the newest records first). Defaults to true.

Response

Success
audio_reconstructions_pagelist of objects
List of chat audio reconstructions returned for the specified page number and page size.
idstring
Identifier for the chat group. Formatted as a UUID.
num_chatsinteger
Total number of chats in this chatgroup
page_numberinteger

The page number of the returned list.

This value corresponds to the page_number parameter specified in the request. Pagination uses zero-based indexing.

page_sizeinteger

The maximum number of items returned per page.

This value corresponds to the page_size parameter specified in the request.

pagination_directionenum
Allowed values:
total_pagesinteger
The total number of pages in the collection.
user_idstring
Identifier for the user that owns this chat. Formatted as a UUID.