Skip to main content
GET
/
api
/
v1
/
voice_speed
/
{voice_uuid}
List supported speeds for a voice
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/voice_speed/{voice_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Speed options retrieved successfully",
  "data": {
    "voice_uuid": "ebeba3e0-89b5-4c94-9841-9555ab155dbc",
    "default": "normal",
    "available": [
      {
        "value": "normal",
        "label": "Normal"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

voice_uuid
string<uuid>
required

UUID of the voice from /api/v1/voice_library.

Response

Speed options retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Speed options retrieved successfully"

data
object