Skip to main content
GET
/
app.rocksky.artist.getArtistRecentListeners
Get artist recent listeners ordered by most recent scrobble
curl --request GET \
  --url https://api.rocksky.app/xrpc/app.rocksky.artist.getArtistRecentListeners \
  --header 'Authorization: Bearer <token>'
{
  "listeners": [
    {
      "id": "<string>",
      "did": "<string>",
      "handle": "<string>",
      "displayName": "<string>",
      "avatar": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "scrobbleUri": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

uri
string<at-uri>
required

The URI of the artist to retrieve recent listeners from

offset
integer

Number of items to skip before returning results

limit
integer

Maximum number of results to return

Response

OK

listeners
object[]