Skip to main content
GET
/
api
/
voices
/
{voiceId}
Get voice
curl --request GET \
  --url https://api.upon-ai.com/api/voices/{voiceId} \
  --header 'Authorization: Bearer <token>'
{
  "voiceId": "<string>",
  "name": "<string>",
  "gender": "<string>",
  "language": "<string>",
  "accent": "<string>",
  "description": "<string>",
  "previewUrl": "<string>",
  "tags": [
    "<string>"
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

voiceId
string
required

Voice identifier.

Query Parameters

workspaceId
integer
required

Workspace identifier.

Response

200 - application/json

Voice metadata.

voiceId
string
required
name
string
required
gender
string
language
string
accent
string
description
string
previewUrl
string<uri>
tags
string[]
createdAt
string<date-time> | null
updatedAt
string<date-time> | null