Voice Model API
GET: Fetch Voice Models
Voice Model API
GET: Fetch Voice Models
Access available voice models using the Kits API.
GET
/
api
/
kits
/
v1
/
voice-models
curl --request GET \
--url https://arpeggi.io/api/kits/v1/voice-models \
--header 'Authorization: Bearer <token>'
{
"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
{
"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,
}
}
curl --request GET \
--url https://arpeggi.io/api/kits/v1/voice-models \
--header 'Authorization: Bearer <token>'
{
"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,
}
}