Read a list's timeline
get_list_timelineRetrieve statuses from accounts in a Mastodon list by providing the list ID, enabling access to posts from that curated group.
Instructions
Statuses from the accounts on one of your lists. Find list ids with get_lists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many statuses. Pages automatically past the 40-per-request ceiling. Default 40. | |
| max_id | No | Continue from a previous page: pass the next_max_id from the last result. | |
| account | No | Which connected account to act as. Matches a full handle (alice@example.social), a bare username (alice), or an instance (example.social). Defaults to the first connected account. Call list_accounts to see them. | |
| list_id | Yes | The list id, from get_lists. | |
| since_hours | No | Instead of a fixed count, return everything from the last N hours, up to `limit`. |