DiskografDocs
APIArtists

List artists

Performers, writers and producers in the archive.

GET
/v1/artists

Query Parameters

q?string

Keyword search across artist names and aliases.

letter?string

First letter of the name, for A-Z browsing.

role?string

Role slug. Repeat the parameter or comma-separate for several.

status?string

Claim status filter.

band?boolean

True for groups only, false for individuals only.

sort?string

Sort column.

order?string

Sort direction.

Value in

  • "asc"
  • "desc"
limit?integer
Range1 <= value <= 80
Default20
offset?integer
Range0 <= value
Default0

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/artists"
{  "data": [    {      "id": -9007199254740991,      "name": "string",      "slug": "string",      "prefix_title": "string",      "is_group": true,      "total_songs": -9007199254740991,      "total_credits": -9007199254740991,      "disambiguator": "string",      "first_release_year": -9007199254740991,      "last_release_year": -9007199254740991,      "avatar_url": "string",      "username": "string"    }  ],  "meta": {    "total": -9007199254740991,    "limit": -9007199254740991,    "offset": -9007199254740991  }}