List Pronunciations

GET https://app.resemble.ai/api/v2/pronunciations

Retrieve all custom pronunciations for your team, with optional filters.

Query Parameters

ParameterTypeDescription
languagestringFilter by language (e.g., en-us).
domainstringFilter by domain (e.g., medical).
statusstringFilter by status: pending, ready, or failed.
activebooleanFilter by active state.
curl "https://app.resemble.ai/api/v2/pronunciations?status=ready" \
-H "Authorization: Bearer YOUR_API_KEY"

Response

{
"success": true,
"items": [
{
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"word": "mounjaro",
"status": "ready",
"active": true,
"audio_url": "https://...",
"created_at": "2026-03-12T00:00:00.000Z",
"updated_at": "2026-03-12T00:00:00.000Z"
}
]
}