Skip to main content
GET
/
v1
/
agents
/
{agentId}
/
audio-cache
List cached audio entries
curl --request GET \
  --url https://api.us.poly.ai/v1/agents/{agentId}/audio-cache \
  --header 'X-API-KEY: <api-key>'
{
  "entries": [
    {
      "id": "<string>",
      "transcript": "<string>",
      "cachedAt": "2023-11-07T05:31:56Z",
      "hitCount": 123,
      "duration": 123,
      "regenerated": true,
      "provider": "<string>",
      "providerVoiceId": "<string>",
      "imported": true,
      "audioFilename": "<string>",
      "languageCode": ""
    }
  ],
  "totalCount": 123
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

agentId
string
required

Query Parameters

limit
integer
default:50

Max entries to return (1-200)

Required range: 1 <= x <= 200
offset
integer
default:0

Pagination offset

Required range: x >= 0
sort
string

Sort expression, e.g. 'hit_count:desc', 'duration:asc'

Response

Successful response

entries
object[]
required
totalCount
integer
required

Total matching entries before pagination

Last modified on June 10, 2026