DiskografDocs
APIUsers

List a member's contributions

The member's public contribution history, newest first.

GET
/v1/users/{username}/contributions

Path Parameters

username*string

The public handle. Numeric user ids are internal and never accepted.

Query Parameters

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/string/contributions"
{  "data": [    {      "id": -9007199254740991,      "action": "string",      "action_at": "string",      "song": {        "id": -9007199254740991,        "title": "string",        "slug": "string",        "released_at": "string",        "artwork_url": "string",        "artwork_source": "Custom",        "youtube_video_id": "string",        "youtube_video_url": "string",        "artists": [          {            "id": -9007199254740991,            "name": "string"          }        ]      }    }  ],  "meta": {    "total": -9007199254740991,    "limit": -9007199254740991,    "offset": -9007199254740991  }}