MiniMax Voice API

The Voice API from MiniMax — 4 operation(s) for voice.

Operations 4

POST /v1/voice_clone Voice Clone #
POST /v1/voice_design Voice Design #
POST /v1/get_voice Get Voice #
POST /v1/delete_voice Delete Voice #

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/minimax-ai-voice-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

minimax-ai-voice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MiniMax Files Voice API
  description: MiniMax text generation API with support for chat completion and streaming output
  license:
    name: MIT
  version: 1.0.0
servers:
- url: https://api.minimax.io
security:
- bearerAuth: []
tags:
- name: Voice
paths:
  /v1/voice_clone:
    post:
      summary: Voice Clone
      description: Create a voice clone from an audio file
      operationId: voiceClone
      tags:
      - Voice
      requestBody:
        description: Voice clone request parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VoiceCloneReq'
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceCloneResp'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /v1/voice_design:
    post:
      summary: Voice Design
      description: Generate voice design based on text prompt
      operationId: voiceDesign
      tags:
      - Voice
      requestBody:
        description: Voice design request parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/T2VReq'
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/T2VResp'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /v1/get_voice:
    post:
      summary: Get Voice
      description: Get available voices by type
      operationId: getVoice
      tags:
      - Voice
      requestBody:
        description: Get voice request parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetVoiceReq'
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetVoiceResp'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /v1/delete_voice:
    post:
      summary: Delete Voice
      description: Delete a voice by ID and type
      operationId: deleteVoice
      tags:
      - Voice
      requestBody:
        description: Delete voice request parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteVoiceReq'
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteVoiceResp'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DeleteVoiceReq:
      type: object
      required:
      - voice_id
      properties:
        voice_id:
          type: string
          description: Voice ID to delete
        voice_type:
          type: string
          description: Type of voice to delete
          enum:
          - system_voice
          - voice_cloning
          - voice_generation
          - music_generation
          - voice_slots
    T2VResp:
      type: object
      properties:
        trial_audio:
          type: string
          description: Trial audio URL
        voice_id:
          type: string
          description: Generated voice ID
    DeleteVoiceResp:
      type: object
      properties:
        voice_id:
          type: string
          description: Deleted voice ID
        description:
          type: array
          items:
            type: string
          description: Deletion description
        created_time:
          type: string
          description: Voice creation time
    GetVoiceResp:
      type: object
      properties:
        system_voice:
          type: array
          items:
            $ref: '#/components/schemas/VoiceInfo'
          description: System voices
        voice_cloning:
          type: array
          items:
            $ref: '#/components/schemas/VoiceInfo'
          description: Voice cloning voices
        voice_generation:
          type: array
          items:
            $ref: '#/components/schemas/VoiceInfo'
          description: Voice generation voices
        music_generation:
          type: array
          items:
            $ref: '#/components/schemas/VoiceInfo'
          description: Music generation voices
        voice_slots:
          type: array
          items:
            $ref: '#/components/schemas/VoiceInfo'
          description: Voice slots
    T2VReq:
      type: object
      required:
      - prompt
      - preview_text
      properties:
        prompt:
          type: string
          description: Text prompt for voice design
        preview_text:
          type: string
          description: Preview text for voice generation
        voice_id:
          type: string
          description: Voice ID (optional)
        aigc_watermark:
          type: boolean
          description: Whether to add AIGC watermark
    VoiceInfo:
      type: object
      properties:
        voice_id:
          type: string
          description: Voice ID
        name:
          type: string
          description: Voice name
        description:
          type: string
          description: Voice description
        gender:
          type: string
          description: Voice gender
        language:
          type: string
          description: Voice language
        age:
          type: string
          description: Voice age
        style:
          type: string
          description: Voice style
        created_at:
          type: integer
          format: int64
          description: Creation timestamp
        updated_at:
          type: integer
          format: int64
          description: Last update timestamp
    VoiceCloneResp:
      type: object
      properties:
        input_sensitive:
          type: boolean
          description: Whether input contains sensitive content
        input_sensitive_type:
          $ref: '#/components/schemas/SensitiveType'
        demo_audio:
          type: string
          description: Demo audio URL
        trace_id:
          type: string
          description: Trace ID for request tracking
    VoiceCloneReq:
      type: object
      required:
      - voice_id
      - file_id
      - output_format
      - need_noise_reduction
      - text
      - model
      - text_validation
      - accuracy
      - need_volume_normalization
      properties:
        voice_id:
          type: string
          description: User-provided voice ID
        file_id:
          type: integer
          format: int64
          description: Audio file ID uploaded by user
        output_format:
          type: string
          description: Output audio format
        need_noise_reduction:
          type: boolean
          description: Whether noise reduction is needed
        text:
          type: string
          description: Text for generating demo audio
        model:
          type: string
          description: Model for generating demo audio
        text_validation:
          type: string
          description: Text validation setting
        accuracy:
          type: number
          format: double
          description: Accuracy requirement
        need_volume_normalization:
          type: boolean
          description: Whether volume normalization is needed
        language_boost:
          type: string
          description: Language boost for demo audio
        clone_prompt:
          $ref: '#/components/schemas/ClonePrompt'
        aigc_watermark:
          type: boolean
          description: Whether to add AIGC watermark
    ClonePrompt:
      type: object
      required:
      - prompt_audio
      - prompt_text
      properties:
        prompt_audio:
          type: integer
          format: int64
          description: Prompt audio ID
        prompt_text:
          type: string
          description: Prompt text
    Error:
      type: object
      required:
      - error
      - message
      properties:
        error:
          type: integer
          format: int32
          description: Error code
        message:
          type: string
          description: Error message
    SensitiveType:
      type: string
      enum:
      - Politics
      - Porn
      - Ad
      - Illegal
      - Abuse
      - Terror
      - Other
      description: Sensitive content type
    GetVoiceReq:
      type: object
      required:
      - voice_type
      properties:
        voice_type:
          type: string
          description: Type of voice to retrieve
          enum:
          - system_voice
          - voice_cloning
          - voice_generation
          - music_generation
          - voice_slots
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT