DiskografDocs
APIUsers

Get a member

One public profile, addressed by username. Includes the claimed artist profile when the member has one.

GET
/v1/users/{username}

Path Parameters

username*string

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/users/string"
{  "data": {    "username": "string",    "name": "string",    "avatar_url": "string",    "created_at": "string",    "is_fan": true,    "artist": {      "id": -9007199254740991,      "name": "string",      "slug": "string",      "is_group": true,      "total_songs": -9007199254740991,      "total_credits": -9007199254740991,      "first_release_year": -9007199254740991,      "last_release_year": -9007199254740991,      "avatar_url": "string"    }  }}