app.bsky.feed.get Feed Skeleton

GET {{baseUrl}}/xrpc/app.bsky.feed.getFeedSkeleton?feed=<at-uri>&limit=50&cursor=<string>

This endpoint is part of the Bluesky application Lexicon APIs (`app.bsky.`). Public endpoints which don't require authentication can be made directly against the public Bluesky AppView API: https://public.api.bsky.app. Authenticated requests are usually made to the user's PDS, with automatic service proxying. Authenticated requests can be used for both public and non-public endpoints.*

To learn more about calling atproto API endpoints like this one, see the API Hosts and Auth guide.

Get a skeleton of a feed provided by a feed generator. Auth is optional, depending on provider requirements, and provides the DID of the requester. Implemented by Feed Generator Service.

Request Params

KeyDatatypeRequiredDescription
feedstring(Required) Reference to feed generator record describing the specific feed being requested.
limitnumber
cursorstring

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;feed&quot;:[{&quot;post&quot;:&quot;\u003cat-uri\u003e&quot;,&quot;reason&quot;:{&quot;repost&quot;:&quot;\u003cat-uri\u003e&quot;},&quot;feedContext&quot;:&quot;\u003cstring\u003e&quot;},{&quot;post&quot;:&quot;\u003cat-uri\u003e&quot;,&quot;reason&quot;:{&quot;repost&quot;:&quot;\u003cat-uri\u003e&quot;},&quot;feedContext&quot;:&quot;\u003cstring\u003e&quot;}],&quot;cursor&quot;:&quot;\u003cstring\u003e&quot;}