Skip to main content
GET
/
tts
/
voices
List TTS voices
curl --request GET \
  --url https://app.myhero.so/tts/voices \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "voices": [
      {
        "key": "<string>",
        "name": "<string>",
        "gender": "female"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

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

Returns the catalog of available text-to-speech voices, each with a key, display name, and gender (female | male). The list is derived from the configured Gemini TTS provider.

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 response

success
enum<boolean>
required
Available options:
true
Example:

true

data
object
required