GET https://app.resemble.ai/api/v2/pronunciations
Retrieve all custom pronunciations for your team, with optional filters.
language
en-us
domain
medical
status
pending
ready
failed
active
$curl "https://app.resemble.ai/api/v2/pronunciations?status=ready" \> -H "Authorization: Bearer YOUR_API_KEY"
1{2 "success": true,3 "items": [4 {5 "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",6 "word": "mounjaro",7 "status": "ready",8 "active": true,9 "audio_url": "https://...",10 "created_at": "2026-03-12T00:00:00.000Z",11 "updated_at": "2026-03-12T00:00:00.000Z"12 }13 ]14}