Voice Model API
GET: Fetch Voice Models
Access available voice models using the Kits API.
GET
/
api
/
kits
/
v1
/
voice-models
Copy
Ask AI
curl --request GET \
--url https://arpeggi.io/api/kits/v1/voice-models \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": [
{
"id": 110784,
"title": "Male Pop",
"tags": ["Singing", "Chest Voice", "Classical", "Opera", "Jazz"],
"imageUrl": "https://arpeggi-prod-public.s3.us-west-2.amazonaws.com/voice-models/images/WOPD47ciycl4AkcXyxiwT.png",
"demoUrl": "https://arpeggi-prod-public.s3.us-west-2.amazonaws.com/voice-models/demos/tszZHHKzsrbXMiVfz7irs.mp3",
"twitterLink": null,
"instagramLink": null,
"tiktokLink": null,
"spotifyLink": null,
"youtubeLink": null
},
...
],
"meta": {
"currentPage": 1,
"firstPage": 1,
"firstPageUrl": "/?page=1",
"lastPage": 3,
"lastPageUrl": "/?page=2",
"nextPageUrl": "/?page=3",
"perPage": 10,
"previousPageUrl": null,
"total": 30,
}
}
Returns a paginated list of voice models.
Query Parameters
asc (default) or desc
Page offset (default 1)
Page size (default 10)
Filter the response to your models only.
Filter the response to instrument models only.
Headers
Bearer <api-key>
Response
Copy
Ask AI
{
"data": [
{
"id": 110784,
"title": "Male Pop",
"tags": ["Singing", "Chest Voice", "Classical", "Opera", "Jazz"],
"imageUrl": "https://arpeggi-prod-public.s3.us-west-2.amazonaws.com/voice-models/images/WOPD47ciycl4AkcXyxiwT.png",
"demoUrl": "https://arpeggi-prod-public.s3.us-west-2.amazonaws.com/voice-models/demos/tszZHHKzsrbXMiVfz7irs.mp3",
"twitterLink": null,
"instagramLink": null,
"tiktokLink": null,
"spotifyLink": null,
"youtubeLink": null
},
...
],
"meta": {
"currentPage": 1,
"firstPage": 1,
"firstPageUrl": "/?page=1",
"lastPage": 3,
"lastPageUrl": "/?page=2",
"nextPageUrl": "/?page=3",
"perPage": 10,
"previousPageUrl": null,
"total": 30,
}
}
Copy
Ask AI
curl --request GET \
--url https://arpeggi.io/api/kits/v1/voice-models \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": [
{
"id": 110784,
"title": "Male Pop",
"tags": ["Singing", "Chest Voice", "Classical", "Opera", "Jazz"],
"imageUrl": "https://arpeggi-prod-public.s3.us-west-2.amazonaws.com/voice-models/images/WOPD47ciycl4AkcXyxiwT.png",
"demoUrl": "https://arpeggi-prod-public.s3.us-west-2.amazonaws.com/voice-models/demos/tszZHHKzsrbXMiVfz7irs.mp3",
"twitterLink": null,
"instagramLink": null,
"tiktokLink": null,
"spotifyLink": null,
"youtubeLink": null
},
...
],
"meta": {
"currentPage": 1,
"firstPage": 1,
"firstPageUrl": "/?page=1",
"lastPage": 3,
"lastPageUrl": "/?page=2",
"nextPageUrl": "/?page=3",
"perPage": 10,
"previousPageUrl": null,
"total": 30,
}
}
Assistant
Responses are generated using AI and may contain mistakes.