app.bsky.feed.getFeedSkeleton
GET/app.bsky.feed.getFeedSkeleton
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
Query Parameters
feed at-urirequired
Reference to feed generator record describing the specific feed being requested.
limit integer
Possible values: >= 1
and <= 100
Default value: 50
cursor string
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
- app.bsky.feed.defs.skeletonReasonRepost
]
cursor string
feed
object[]
required
post at-urirequired
reason
object
oneOf
repost at-urirequired
feedContext string
Possible values: <= 2000 characters
Context that will be passed through to client and may be passed to feed generator back alongside interactions.
{
"cursor": "string",
"feed": [
{
"post": "string",
"reason": {},
"feedContext": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
Possible values: [InvalidRequest
, ExpiredToken
, InvalidToken
, UnknownFeed
]
message stringrequired
{
"error": "InvalidRequest",
"message": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error required
message stringrequired
{
"message": "string"
}
Loading...