Skip to main content

Overview

MiniMax Voice is an audio model for creating reusable custom voices. Use design to create a new voice from a text description, or use clone to create a reusable voice from one reference audio clip.

Endpoint and authentication

Base URL:
All requests require your APIXO API key:
Submit requests also require:

Copy-paste async quickstart

This minimal request submits a clone task and returns a taskId.
Successful response:
Save the taskId; you need it to poll for the final result.

Poll for result

Processing response:
Success response:
Failed response:
Parse resultJson after state becomes success:

Request body

Design

Clone

Parameters

string
default:"async"
required
Result delivery mode. Use async for polling with statusTask, or callback for webhook delivery.
string
Required when request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.
object
required
MiniMax Voice input parameters.

Voice ID behavior

  • The final voice_id is generated automatically from voice_id_prefix.
  • A typical returned value looks like warm001-a1b2c3.
  • Use the returned voice_id in later MiniMax speech generation requests that support custom voices.
  • If you want to keep a newly created custom voice available for long-term reuse, use that voice_id in a supported speech request after creation.
  • A newly created custom voice that is never used later may become unavailable after 7 days.

Validation and media rules

  • Only the documented fields on this page are part of the public request contract.
  • Do not send your own final voice_id in the request; the platform generates it for you.
  • Clone requires exactly 1 reference audio URL.
  • Reference audio URLs must be publicly reachable.
  • Supported reference audio formats include mp3, m4a, and wav.
  • Clear speech works best. Heavy background music, strong noise, long silence, or invalid audio content can cause the task to fail.
  • The preview synthesis model for clone mode is platform-managed and is not user-selectable.

Response format

Submit task response

POST /generateTask/minimax-voice returns a task ID when the task is accepted:
integer
API status code. 200 means the task was accepted.
string
Human-readable status message.
string
Unique task identifier used with the status endpoint.

Status response fields

string
Unique task identifier.
string
Current task state: processing, success, or failed.
string
Reusable custom voice ID generated for this task.
string
Voice readiness state. preparing means the custom voice is still being prepared; active means it was created successfully.
string
JSON string containing preview audio result URLs. Present when preview audio is available.
string
Machine-readable failure code. Present when state is failed.
string
Human-readable failure message. Present when state is failed.
integer
Task creation timestamp in Unix milliseconds.
integer
Task completion timestamp in Unix milliseconds. Present after completion.
integer
Processing duration in milliseconds. Present after successful completion.

Webhook callback mode

Use callback mode when your backend should receive the final result automatically instead of polling.
See Webhooks for delivery requirements and retry behavior.

Billing

MiniMax Voice is billed per request. For current route and market comparison pricing, see Pricing.

Latency and polling

Voice creation usually takes longer than lightweight TTS requests because the custom voice must be prepared before it can be reused.
Use callback mode for production voice-creation workflows so your backend does not need to keep polling.

Errors and troubleshooting

HTTP errors

Common validation and failure cases

  • voice_id_prefix must start with a letter, contain only letters or digits, and be at least 6 characters long.
  • preview_text is required for design, and cannot be empty.
  • audio_urls must contain exactly one non-empty URL for clone.
  • need_noise_reduction and need_volume_normalization must be boolean values when provided.
  • accuracy must be between 0 and 1.
  • language_boost must be one of the documented supported values.
  • Reference audio that is unreachable, empty, too noisy, or otherwise invalid can cause task failure.