GET
/
getAllVoices
curl --request GET \
  --url https://api.musicgpt.com/api/public/v1/getAllVoices \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "voices": [
    {
      "voice_id": "00126f62-1f31-434a-abc6-a5e958a737e3",
      "voice_name": "Joji"
    },
    {
      "voice_id": "0031cf05-6d3d-4c15-9115-d8236590b957",
      "voice_name": "Amy Winehouse"
    }
  ],
  "limit": 20,
  "page": 0,
  "total": 3108
}

Authorizations

Authorization
string
header
required

Query Parameters

limit
integer
default:20

Maximum number of voices per page

page
integer
default:0

Page number for pagination

Response

200
application/json

Successful response

The response is of type object.