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

order*
String

asc (default) or desc

page
Number

Page offset (default 1)

perPage
Number

Page size (default 10)

myModels
Boolean

Filter the response to your models only.

instruments
Boolean

Filter the response to instrument models only.

Headers

Authorization*
String

Bearer <api-key>

Response

data
List of Voice Models
meta
Pagination Meta
{
    "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,
    }
}