GET https://app.resemble.ai/api/v2/edit/{uuid}
Retrieve the result of an audio edit job.
uuid
$curl 'https://app.resemble.ai/api/v2/edit/EDIT_UUID' \> -H 'Authorization: Bearer YOUR_API_TOKEN'
1{2 "success": true,3 "item": {4 "uuid": "EDIT_UUID",5 "voice_uuid": "VOICE_UUID",6 "original_transcript": "Hello world",7 "target_transcript": "Hi there",8 "input_audio_url": "https://...",9 "result_audio_url": "https://...",10 "error": null11 }12}
Result audio URL will be available when status=success. Error field will be present if the edit failed.