List Recordings

GET https://app.resemble.ai/api/v2/voices/{voice_uuid}/recordings

Retrieve a paginated list of recordings for a voice.

ParameterTypeRequiredNotes
voice_uuidstringVoice UUID (URL parameter).
pageintegerPage number for pagination (query parameter).
page_sizeintegerNumber of items per page (query parameter).
$curl 'https://app.resemble.ai/api/v2/voices/VOICE_UUID/recordings?page=1&page_size=10' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'
1{
2 "success": true,
3 "page": 1,
4 "total_results": 10,
5 "page_count": 1,
6 "items": [
7 {
8 "uuid": "RECORDING_UUID",
9 "name": "line_01",
10 "text": "Welcome back to Resemble!",
11 "emotion": "neutral",
12 "fill": false,
13 "is_active": true,
14 "audio_src": "https://...",
15 "metrics": {
16 "signal_to_noise_ratio": 28.4,
17 "loudness_grade": "A",
18 "resemble_sample_score": 0.92
19 },
20 "created_at": "2024-01-15T10:30:00Z",
21 "updated_at": "2024-01-15T10:30:00Z"
22 }
23 ]
24}