Get Recording
GET https://app.resemble.ai/api/v2/voices/{voice_uuid}/recordings/{uuid}
Retrieve details of a specific recording.
GET https://app.resemble.ai/api/v2/voices/{voice_uuid}/recordings/{uuid}
Retrieve details of a specific recording.
| Parameter | Type | Required | Notes |
|---|---|---|---|
voice_uuid | string | ā | Voice UUID (URL parameter). |
uuid | string | ā | Recording UUID (URL parameter). |
$ curl 'https://app.resemble.ai/api/v2/voices/VOICE_UUID/recordings/RECORDING_UUID' \ > -H 'Authorization: Bearer YOUR_API_TOKEN'
1 { 2 "success": true, 3 "item": { 4 "uuid": "RECORDING_UUID", 5 "name": "line_01", 6 "text": "Welcome back to Resemble!", 7 "emotion": "neutral", 8 "fill": false, 9 "is_active": true, 10 "audio_src": "https://...", 11 "metrics": { 12 "signal_to_noise_ratio": 28.4, 13 "loudness_grade": "A", 14 "resemble_sample_score": 0.92 15 }, 16 "created_at": "2024-01-15T10:30:00Z", 17 "updated_at": "2024-01-15T10:30:00Z" 18 } 19 }
