Resemble AI subpackage_audioEdit API

The subpackage_audioEdit API from Resemble AI — 2 operation(s) for subpackage_audioedit.

Operations 3

GET /edit List audio edits #
POST /edit Create audio edit #
GET /edit/{audio_edit_uuid} Get audio edit #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/resemble-ai-subpackage-audioedit-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

resemble-ai-subpackage-audioedit-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Audio Edit API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_audioEdit
paths:
  /edit:
    get:
      operationId: list-audio-edits
      summary: List audio edits
      description: Retrieve paginated list of audio edits
      tags:
      - subpackage_audioEdit
      parameters:
      - name: page
        in: query
        required: true
        schema:
          type: integer
          default: 1
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of audio edits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Audio_Edit_listAudioEdits_Response_200'
    post:
      operationId: create-audio-edit
      summary: Create audio edit
      description: Edit audio segments using voice synthesis
      tags:
      - subpackage_audioEdit
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Edit job created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Audio_Edit_createAudioEdit_Response_200'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                input_audio:
                  type: string
                  format: binary
                  description: WAV, MP3, M4A, or WMA file (< 20 seconds)
                original_transcript:
                  type: string
                  description: Accurate transcript of the uploaded audio
                target_transcript:
                  type: string
                  description: Desired replacement text
                voice_uuid:
                  type: string
                  description: Voice used to render the edited segment
              required:
              - input_audio
              - original_transcript
              - target_transcript
              - voice_uuid
  /edit/{audio_edit_uuid}:
    get:
      operationId: get-audio-edit
      summary: Get audio edit
      description: Get status and result of an audio edit
      tags:
      - subpackage_audioEdit
      parameters:
      - name: audio_edit_uuid
        in: path
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Audio edit details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Audio_Edit_getAudioEdit_Response_200'
components:
  schemas:
    Audio_Edit_getAudioEdit_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/EditAudioEditUuidGetResponsesContentApplicationJsonSchemaItem'
      title: Audio Edit_getAudioEdit_Response_200
    EditPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
        voice_uuid:
          type: string
        original_transcript:
          type: string
        target_transcript:
          type: string
        input_audio_url:
          type: string
          format: uri
      title: EditPostResponsesContentApplicationJsonSchemaItem
    Audio_Edit_createAudioEdit_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/EditPostResponsesContentApplicationJsonSchemaItem'
      title: Audio Edit_createAudioEdit_Response_200
    Audio_Edit_listAudioEdits_Response_200:
      type: object
      properties:
        success:
          type: boolean
        page:
          type: integer
        num_pages:
          type: integer
        page_size:
          type: integer
        items:
          type: array
          items:
            $ref: '#/components/schemas/EditGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Audio Edit_listAudioEdits_Response_200
    EditAudioEditUuidGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
        voice_uuid:
          type: string
        original_transcript:
          type: string
        target_transcript:
          type: string
        input_audio_url:
          type: string
          format: uri
        result_audio_url:
          type: string
          format: uri
      title: EditAudioEditUuidGetResponsesContentApplicationJsonSchemaItem
    EditGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: EditGetResponsesContentApplicationJsonSchemaItemsItems
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api