x-twitter.get_bookmarks
Fetch bookmarked posts for a connected X account.
Call x-twitter.connected_accounts first. Pass user_id or user_name to target a specific account, or omit both to use the default account.
Returns raw X API data with tweet objects, expanded authors, media, polls, and places. Use next_cursor to fetch the next page.
Cost = 25 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of bookmarks to return (default 20, max 100). | |
| cursor | No | Pagination cursor from a previous response next_cursor field. | |
| user_id | No | Numeric X user id from x-twitter.connected_accounts. Pass user_id or user_name to target a specific account, not both. Omit both to use the default account. | |
| user_name | No | X handle from x-twitter.connected_accounts, with or without a leading @. Pass user_id or user_name to target a specific account, not both. Omit both to use the default account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Bookmarked posts returned by the X API. | |
| includes | No | Expanded users, media, polls, places, and referenced posts. | |
| next_cursor | No | Cursor for the next page of bookmarks, when available. | |
| result_count | No | Number of bookmarks in this page. |