Skip to main content
GET
/
voices
List Voices
curl --request GET \
  --url https://api.revring.ai/v1/voices \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "displayName": "<string>",
      "language": "<string>",
      "source": "<string>",
      "status": "<string>",
      "gender": "<string>",
      "category": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Generate API keys from the RevRing dashboard.

Query Parameters

language
string

Filter by language code (e.g. 'en').

category
string

Filter by category (e.g. 'English').

Case-insensitive match on the voice display name.

Response

List of voices

data
object[]