get_custom_feed
Retrieve posts from any custom algorithm feed using its AT-URI. Returns feed metadata and paginated posts; use the cursor to get more pages.
Instructions
Get posts from a custom algorithm feed. Works without authentication; richer with auth. Returns feed generator metadata and a paginated list of posts; use the returned cursor to fetch subsequent pages. Use get_timeline for the authenticated user's home feed instead. Subject to per-tool rate limiting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| feedUri | Yes | AT-URI of the custom algorithm feed generator (at://did/app.bsky.feed.generator/rkey). | |
| limit | No | Max posts to return per page (1–100, default 50). | |
| cursor | No | Opaque pagination cursor from the previous response cursor field; omit for the first page. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | Yes | Whether the feed was retrieved successfully. | |
| feed | Yes | Metadata about the feed generator. | |
| posts | Yes | Paginated posts from the feed. | |
| cursor | No | Pagination cursor for the next page; absent when no more pages. |