Get the full root-to-bud path that leads to a given bud, with pollen counts. Buds are returned in story order, oldest (root) to newest (bud), and the response is paginated. The cursor is the AT-URI of the next bud to return on the following page; it is omitted when the target bud has been reached.
Parameters
Output
application/jsonbud
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
buds
array
Required
No description available.
cursor
stringat-uri
Optional
AT-URI of the next bud to fetch. Absent when the target bud has been returned.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"bud",
"buds"
],
"properties": {
"bud": {
"type": "string",
"format": "at-uri"
},
"buds": {
"type": "array",
"items": {
"ref": "#budView",
"type": "ref"
}
},
"cursor": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the next bud to fetch. Absent when the target bud has been returned."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"bud"
],
"properties": {
"bud": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the bud at the end of this path."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the bud to start the next page at. Omit on the first request."
}
}
},
"description": "Get the full root-to-bud path that leads to a given bud, with pollen counts. Buds are returned in story order, oldest (root) to newest (bud), and the response is paginated. The cursor is the AT-URI of the next bud to return on the following page; it is omitted when the target bud has been reached."
}