Skip to main content
GET
/
v1
/
voices
/
{voice_id}
Get Voice
curl --request GET \
  --url https://api.openmic.ai/v1/voices/{voice_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "voice_id": "<string>",
  "sample_url": "<string>",
  "provider": "<string>",
  "gender": "<string>",
  "language": "<string>",
  "languages": [
    "<string>"
  ],
  "accent": "<string>",
  "age": "<string>",
  "ethnicity": "<string>",
  "characteristics": [
    "<string>"
  ],
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header as: Authorization: Bearer <your-api-key>

Path Parameters

voice_id
integer
required

The numeric ID of the voice.

Response

Voice details.

id
integer

Unique numeric ID of the voice.

name
string

Display name of the voice.

voice_id
string

Provider-specific voice identifier used when configuring a bot.

sample_url
string

URL to an audio sample of the voice.

provider
string

TTS provider (e.g. 'elevenlabs', 'deepgram').

gender
string

Gender of the voice (e.g. 'male', 'female').

language
string

Primary language code.

languages
string[]

All supported language codes.

accent
string

Accent or regional variant, if applicable.

age
string

Approximate age group (e.g. 'young', 'middle-aged').

ethnicity
string

Ethnicity descriptor, if available.

characteristics
string[]

Descriptive tags (e.g. 'warm', 'professional', 'energetic').

description
string

Free-text description of the voice.

created_at
string<date-time>
updated_at
string<date-time>