app.rocksky.feed.getFeedSkeleton

rocksky.app

Documentation

Get the feed by uri

main query

Get the feed by uri

Parameters

cursor string Optional

The pagination cursor.

feed string at-uri Required

The feed URI.

limit integer Optional

The maximum number of scrobbles to return

offset integer Optional

The offset for pagination

Output

Encodingapplication/json
cursor string Optional

The pagination cursor for the next set of results.

scrobbles array Optional

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The pagination cursor.
The feed URI.
The maximum number of scrobbles to return
The offset for pagination
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "cursor": {
          "type": "string",
          "description": "The pagination cursor for the next set of results."
        },
        "scrobbles": {
          "type": "array",
          "items": {
            "ref": "app.rocksky.scrobble.defs#scrobbleViewBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "feed"
    ],
    "properties": {
      "feed": {
        "type": "string",
        "format": "at-uri",
        "description": "The feed URI."
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "description": "The maximum number of scrobbles to return"
      },
      "cursor": {
        "type": "string",
        "description": "The pagination cursor."
      },
      "offset": {
        "type": "integer",
        "minimum": 0,
        "description": "The offset for pagination"
      }
    }
  },
  "description": "Get the feed by uri"
}

Lexicon Garden

@