Skip to main content
GET
/
app.rocksky.feed.getStories
Get all currently playing tracks by users
curl --request GET \
  --url https://api.rocksky.app/xrpc/app.rocksky.feed.getStories \
  --header 'Authorization: Bearer <token>'
{
  "stories": [
    {
      "album": "<string>",
      "albumArt": "<string>",
      "albumArtist": "<string>",
      "albumUri": "<string>",
      "artist": "<string>",
      "artistUri": "<string>",
      "avatar": "<string>",
      "createdAt": "<string>",
      "did": "<string>",
      "handle": "<string>",
      "id": "<string>",
      "title": "<string>",
      "trackId": "<string>",
      "trackUri": "<string>",
      "uri": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

size
integer

The maximum number of stories to return.

Required range: x >= 1
feed
string<at-uri>

The feed URI to filter stories by.

following
boolean

If true, only return stories from users the viewer follows. Requires authentication.

Response

OK

stories
object[]