Resemble AI subpackage_recordings API

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

Operations 5

GET /voices/{voice_uuid}/recordings List recordings #
POST /voices/{voice_uuid}/recordings Create recording #
GET /voices/{voice_uuid}/recordings/{recording_id} Get recording #
DELETE /voices/{voice_uuid}/recordings/{recording_id} Delete recording #
PATCH /voices/{voice_uuid}/recordings/{recording_id} Update recording #

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-recordings-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-recordings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Recordings API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_recordings
paths:
  /voices/{voice_uuid}/recordings:
    get:
      operationId: list-recordings
      summary: List recordings
      description: List all recordings for a voice
      tags:
      - subpackage_recordings
      parameters:
      - name: voice_uuid
        in: path
        required: true
        schema:
          type: string
      - name: page
        in: query
        required: true
        schema:
          type: integer
          default: 1
      - name: page_size
        in: query
        required: false
        schema:
          type: integer
          default: 10
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of recordings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recordings_listRecordings_Response_200'
    post:
      operationId: create-recording
      summary: Create recording
      description: Upload a new recording for voice training
      tags:
      - subpackage_recordings
      parameters:
      - name: voice_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: Recording created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recordings_createRecording_Response_200'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: Audio file (WAV recommended, 1-12 seconds)
                name:
                  type: string
                  description: Display name
                text:
                  type: string
                  description: Transcript of the clip
                emotion:
                  type: string
                  description: Emotion label
                is_active:
                  type: boolean
                  description: Include in training
                fill:
                  type: boolean
                  description: Include for Resemble Fill
              required:
              - file
              - name
              - text
              - emotion
              - is_active
  /voices/{voice_uuid}/recordings/{recording_id}:
    get:
      operationId: get-recording
      summary: Get recording
      description: Get recording details
      tags:
      - subpackage_recordings
      parameters:
      - name: voice_uuid
        in: path
        required: true
        schema:
          type: string
      - name: recording_id
        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: Recording details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recordings_getRecording_Response_200'
    delete:
      operationId: delete-recording
      summary: Delete recording
      description: Delete a recording
      tags:
      - subpackage_recordings
      parameters:
      - name: voice_uuid
        in: path
        required: true
        schema:
          type: string
      - name: recording_id
        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: Recording deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recordings_deleteRecording_Response_200'
    patch:
      operationId: update-recording
      summary: Update recording
      description: Update a recording
      tags:
      - subpackage_recordings
      parameters:
      - name: voice_uuid
        in: path
        required: true
        schema:
          type: string
      - name: recording_id
        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: Recording updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Recordings_updateRecording_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                text:
                  type: string
                emotion:
                  type: string
                is_active:
                  type: boolean
components:
  schemas:
    Recordings_createRecording_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem'
      title: Recordings_createRecording_Response_200
    Recordings_deleteRecording_Response_200:
      type: object
      properties:
        success:
          type: boolean
      title: Recordings_deleteRecording_Response_200
    Recordings_updateRecording_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem'
      title: Recordings_updateRecording_Response_200
    Recordings_getRecording_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem'
      title: Recordings_getRecording_Response_200
    VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: VoicesVoiceUuidRecordingsRecordingIdPatchResponsesContentApplicationJsonSchemaItem
    VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems
    Recordings_listRecordings_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/VoicesVoiceUuidRecordingsGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Recordings_listRecordings_Response_200
    VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: VoicesVoiceUuidRecordingsRecordingIdGetResponsesContentApplicationJsonSchemaItem
    VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: VoicesVoiceUuidRecordingsPostResponsesContentApplicationJsonSchemaItem
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api