Get a recording
This endpoint retrieves one recording for a particular voice.
HTTP Request
GET https://app.resemble.ai/api/v2/voices/<voice_uuid>/recordings/<recording_uuid>
URL Parameters | Type | Description |
---|---|---|
recording_uuid | string | UUID of the recording to fetch |
voice_uuid | string | UUID of the voice to which the recording belongs |
HTTP Response
{
"success": true,
"item": {
"uuid": <string>,
"name": <string>,
"text": <string>,
"emotion": <string>,
"is_active": <boolean>,
"fill": <boolean>,
"audio_src": Optional<string>,
"created_at": <UTC string>,
"updated_at": <UTC string>,
"metrics": Optional<{
"signal_to_noise_ratio": <number>,
"loudness_grade": <string>,
"resemble_sample_score": <number>,
}>,
}
}
Examples
NodeJS
1
2
3
4
5
import { Resemble } from '@resemble/node'
Resemble.setApiKey('YOUR_API_TOKEN')
await Resemble.v2.recordings.get(voiceUuid, recordingUuid)
API Key:
Voice UUID:
Recording UUID: