Get Audio Enhancement

GET https://app.resemble.ai/api/v2/audio_enhancements/{uuid}

Retrieve the result of an audio enhancement job.

ParameterTypeRequiredNotes
uuidstringAudio enhancement UUID (URL parameter).
$curl 'https://app.resemble.ai/api/v2/audio_enhancements/ENHANCEMENT_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'
1{
2 "success": true,
3 "uuid": "ENHANCEMENT_UUID",
4 "status": "completed",
5 "enhanced_audio_url": "https://...",
6 "error_message": null
7}

Enhanced audio URL will be available when status=completed. Error message will be present if the enhancement failed.