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 Edit
      • List Edits
      • Get Edit
  • Real-Time Agents
    • Overview
  • Safety & Detection
Status
LogoLogo
Voice ToolsAudio Edit

Create Audio Edit

Was this page helpful?
Previous

List Audio Edits

Next
Built with

POST https://app.resemble.ai/api/v2/edit

Create a new audio edit job to modify spoken content.

FieldTypeRequiredNotes
original_transcriptstring✅Original text from the audio.
target_transcriptstring✅Desired modified text.
voice_uuidstring✅Voice to use for synthesis.
input_audiostring✅Input audio data or URL.
callback_uristring❌Callback URL for completion notification.
$curl --request POST 'https://app.resemble.ai/api/v2/edit' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{
> "original_transcript": "Hello world",
> "target_transcript": "Hi there",
> "voice_uuid": "VOICE_UUID",
> "input_audio": "https://..."
> }'
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": null,
10 "error": null
11 }
12}

Voice must be a non-marketplace voice owned by the user. Processing is asynchronous. Result will be available via GET endpoint when complete.