Resemble AI subpackage_voiceDesign API

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

Operations 2

POST /voice-design Generate voice candidates #
POST /voice-design/create Create voice from candidate #

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-voicedesign-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-voicedesign-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Voice Design API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_voiceDesign
paths:
  /voice-design:
    post:
      operationId: generate-voice-design
      summary: Generate voice candidates
      description: Generate three voice candidates from a text prompt
      tags:
      - subpackage_voiceDesign
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Voice candidates generated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Voice_Design_generateVoiceDesign_Response_200'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                user_prompt:
                  type: string
                  description: Description of desired voice
              required:
              - user_prompt
  /voice-design/create:
    post:
      operationId: create-voice-from-candidate
      summary: Create voice from candidate
      description: Create a voice from a voice design candidate
      tags:
      - subpackage_voiceDesign
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Voice created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Voice_Design_createVoiceFromCandidate_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                uuid:
                  type: string
                voice_sample_index:
                  type: integer
                name:
                  type: string
              required:
              - uuid
              - voice_sample_index
              - name
components:
  schemas:
    Voice_Design_createVoiceFromCandidate_Response_200:
      type: object
      properties:
        success:
          type: boolean
        voice_uuid:
          type: string
      title: Voice Design_createVoiceFromCandidate_Response_200
    Voice_Design_generateVoiceDesign_Response_200:
      type: object
      properties:
        voice_candidates:
          type: array
          items:
            $ref: '#/components/schemas/VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems'
      title: Voice Design_generateVoiceDesign_Response_200
    VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems:
      type: object
      properties:
        audio_url:
          type: string
          format: uri
        voice_sample_index:
          type: integer
        uuid:
          type: string
      title: VoiceDesignPostResponsesContentApplicationJsonSchemaVoiceCandidatesItems
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api