Docs
APISongs

List a song's contributors

The members who added and edited this song, and the history of those actions.

GET
/v1/songs/{songId}/contributors

Path Parameters

songId*integer

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/songs/0/contributors"
{  "data": {    "song_id": -9007199254740991,    "added_by": {      "username": "string",      "name": "string",      "avatar_url": "string"    },    "edited_by": {      "username": "string",      "name": "string",      "avatar_url": "string"    },    "contributions": [      {        "action": "string",        "action_at": "string",        "user": {          "username": "string",          "name": "string",          "avatar_url": "string"        }      }    ]  }}