Skip to main content
GET
/
h
/
v2
/
voices
List voices
curl --request GET \
  --url https://api.openmic.ai/h/v2/voices \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "voices": [
    {
      "id": 123,
      "name": "<string>",
      "provider": "OpenAI",
      "gender": "MALE",
      "language": "<string>",
      "accent": "<string>",
      "preview_url": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key obtained from the OpenMic dashboard.

Query Parameters

page_size
integer

Number of records per page (default 50, max 100).

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor returned by the previous response.

Full-text search on voice name.

gender
enum<string>
Available options:
MALE,
FEMALE,
NEUTRAL
provider
enum<string>
Available options:
OpenAI,
ElevenLabs,
Deepgram,
Cartesia,
Rime,
Sarvam
language
string
accent
string
sort_by
enum<string>
Available options:
name,
created_at
sort_order
enum<string>
Available options:
asc,
desc

Response

Paginated list of voices.

has_more
boolean
required

Whether more records exist after this page.

voices
object[]
required
next_cursor
string

Opaque cursor to pass as cursor in the next request.