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
On this page
  • Workflow
  • Resource Schema
Voice ToolsAudio Edit

Audio Edit

Was this page helpful?
Previous

Create Audio Edit

Next
Built with

Audio Edit performs targeted audio inpainting—modify portions of an existing recording without rerecording the entire clip.

Workflow

  1. Create an edit with the source audio, transcripts, and target voice.
  2. Poll for completion using the returned UUID.
  3. Download the result audio from result_audio_url once available.

Resource Schema

1interface AudioEdit {
2 uuid: string;
3 voice_uuid: string;
4 original_transcript: string;
5 target_transcript: string;
6 input_audio_url: string;
7 result_audio_url: string | null;
8}