Overview
MiniMax Voice is an audio model for creating reusable custom voices. Usedesign 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:
Copy-paste async quickstart
This minimal request submits a clone task and returns ataskId.
taskId; you need it to poll for the final result.
Poll for result
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_idis generated automatically fromvoice_id_prefix. - A typical returned value looks like
warm001-a1b2c3. - Use the returned
voice_idin 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_idin 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_idin 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, andwav. - 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.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.Errors and troubleshooting
HTTP errors
Common validation and failure cases
voice_id_prefixmust start with a letter, contain only letters or digits, and be at least 6 characters long.preview_textis required fordesign, and cannot be empty.audio_urlsmust contain exactly one non-empty URL forclone.need_noise_reductionandneed_volume_normalizationmust be boolean values when provided.accuracymust be between0and1.language_boostmust be one of the documented supported values.- Reference audio that is unreachable, empty, too noisy, or otherwise invalid can cause task failure.