Skip to main content
GET
/
v1
/
searchVoices
Get Voices by Name
curl --request GET \
  --url https://api.musicgpt.com/api/public/v1/searchVoices \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "voices": [
    {
      "voice_id": "JustinBieber",
      "voice_name": "Justin Bieber"
    }
  ],
  "limit": 20,
  "page": 0,
  "total": 2
}

Documentation Index

Fetch the complete documentation index at: https://docs.musicgpt.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Query Parameters

query
string
required

The search string to filter voices by name

limit
integer
default:20

Maximum number of voices per page

page
integer
default:0

Page number for pagination

Response

Successful response

success
boolean
voices
object[]
limit
integer
page
integer
total
integer