Skip to content
GET
https://api.menavoice.ai/api/tts/voices
Try it
curl https://api.menavoice.ai/api/tts/voices
{
  "voices": [
    {
      "id": "noura",
      "nameAr": "نورة",
      "nameEn": "Noura",
      "descAr": "صوت مشرق وحيوي",
      "descEn": "Bright and lively",
      "gender": "female"
    },
    {
      "id": "layla",
      "nameAr": "ليلى",
      "nameEn": "Layla",
      "descAr": "صوت حازم وشبابي",
      "descEn": "Firm and youthful",
      "gender": "female"
    },
    {
      "id": "mohammed",
      "nameAr": "محمد",
      "nameEn": "Mohammed",
      "descAr": "صوت مرح ونشيط",
      "descEn": "Cheerful and energetic",
      "gender": "male"
    }
  ]
}

Returns the 30 studio voices you can use as voiceId in Text to Speech, with their names and descriptions in English and Arabic. This endpoint is public: it doesn't need an API key and isn't billed.

Voices in your own voice library aren't included.

Response

application/json
voicesobject[]required

The studio voices, female voices first.

Show properties
idstringrequired

The voice ID to send as voiceId, such as layla.

nameEnstringrequired

The voice's name in English.

nameArstringrequired

The voice's name in Arabic.

descEnstringrequired

A short description of the voice in English, such as "Bright and lively".

descArstringrequired

The same description in Arabic.

genderenum<string>required

female or male.

Was this page helpful?