Get an Audio Enhancement
This endpoint allows you to check the status of an audio enhancement job and retrieve the enhanced audio when completed.
HTTP Request
GET https://app.resemble.ai/api/v2/audio_enhancements/<enhancement_uuid>
URL Parameters | Type | Description |
---|---|---|
enhancement_uuid | string | UUID of the Audio Enhancement to fetch |
1
2
curl --request GET "https://app.resemble.ai/api/v2/audio_enhancements/your_enhancement_uuid"
-H "Authorization: Bearer YOUR_API_TOKEN"
Request Headers
Header | Value | Description |
---|---|---|
Authorization | Bearer YOUR_API_TOKEN | API token can be obtained by logging into the Resemble web application and navigating to the API section. |
HTTP Response
{
"success": true,
"uuid": "<enhancement_uuid>",
"status": "<processing|completed|failed>",
"enhanced_audio_url": "<url_to_download_enhanced_audio>",
"error_message": "<error_message_if_failed>"
}
Response Body
Attribute | Type | Description |
---|---|---|
success | boolean | Whether the request was successful. |
uuid | string | The unique identifier for the enhancement job. |
status | string | Current status: "processing", "completed", or "failed". |
enhanced_audio_url | string | URL to download the enhanced audio. Only present when status is "completed". |
error_message | string | Description of the error if status is "failed". |
Example
1
2
curl --request GET "https://app.resemble.ai/api/v2/audio_enhancements/3f7de642-a63c-4f28-b6c4-75a2dda783fe"
-H "Authorization: Bearer YOUR_API_TOKEN"
Try It Out
API Key:
Enhancement UUID: