DiskografDocs
APIUsers

List contributors

Public member profiles. Members without a username, and banned members, are never returned. Private account fields — email, roles, ban state — are never included in any response.

GET
/v1/users

Query Parameters

q?string

Keyword search across names and usernames.

filter?string

Subset filter, for example artists only.

sort?string

Sort column.

limit?integer
Range1 <= value <= 80
Default20
offset?integer
Range0 <= value
Default0

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/users"
{  "data": [    {      "username": "string",      "name": "string",      "avatar_url": "string",      "is_fan": true,      "is_artist": true,      "is_group": true,      "joined_at": "string",      "contribution_count": -9007199254740991    }  ],  "meta": {    "total": -9007199254740991,    "limit": -9007199254740991,    "offset": -9007199254740991  }}