Skip to main content
GET
/
vendors
/
minimax
/
v1
/
speech-2.8-hd
/
text-to-speech
/
generation
/
{task_id}
Get Speech Generation Task
curl --request GET \
  --url https://api.mulerouter.ai/vendors/minimax/v1/speech-2.8-hd/text-to-speech/generation/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "audios": [
    "https://mulerouter.muleusercontent.com/public/xxx/result.mp3"
  ],
  "audio_length": 3.5,
  "audio_size": 56000,
  "usage_characters": 42,
  "word_count": 8,
  "task_info": {
    "id": "8e1e315e-b50d-4334-a231-be7d19a372f4",
    "status": "completed",
    "created_at": "2026-03-03T00:00:00Z",
    "updated_at": "2026-03-03T00:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://mulerouter.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve the status and result of a MiniMax Speech 2.8 HD text-to-speech generation task using the task_info.id returned from the POST request.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
string<uuid>
required

Response

200 - application/json

Task result

audios
string<uri>[]

List of generated audio file URLs.

audio_length
number | null

Audio duration in seconds.

audio_size
integer | null

Audio file size in bytes.

usage_characters
integer | null

Number of billable characters.

word_count
integer | null

Word count in input text.

task_info
object