For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voice Generation
    • Speech-to-Speech
  • Voice Creation
  • Voice Tools
      • Overview
      • Create Enhancement
      • List Enhancements
      • Get Enhancement
  • Real-Time Agents
    • Overview
  • Safety & Detection
Status
LogoLogo
On this page
  • Path Parameters
  • Success Response
  • Status Values
  • Response Fields
  • Error Responses
Voice ToolsAudio Enhancement

Get Audio Enhancement

Was this page helpful?
Previous

Agents

Next
Built with

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

Poll this endpoint to check the status of an enhancement job and retrieve the download URL when complete.

Path Parameters

ParameterTypeRequiredNotes
uuidstring✅The UUID returned from the Create Enhancement endpoint.
$curl 'https://app.resemble.ai/api/v2/audio_enhancements/ENHANCEMENT_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'

Success Response

Status: 200 OK

1{
2 "success": true,
3 "uuid": "ENHANCEMENT_UUID",
4 "status": "completed",
5 "enhanced_audio_url": "https://app.resemble.ai/rails/active_storage/blobs/...",
6 "error_message": null
7}

Status Values

StatusMeaningAction
pendingJob is queuedContinue polling
processingEnhancement in progressContinue polling
completedDone — enhanced_audio_url is availableDownload the enhanced audio
failedProcessing failedRead error_message for details

Response Fields

FieldTypeDescription
uuidstringEnhancement identifier.
statusstringOne of: pending, processing, completed, failed.
enhanced_audio_urlstring or nullDownload URL. Only present when status is completed.
error_messagestring or nullHuman-readable error. Only present when status is failed.

Error Responses

StatusConditionExample
404UUID not found or belongs to another team{"success": false, "message": "Audio enhancement not found or not accessible"}

The enhanced_audio_url is a temporary signed URL. Download it promptly after receiving a completed status. The output format is WAV regardless of the input format.