ariel_get_timeline
Retrieve the authenticated user's home timeline posts. Use 'hours' mode to fetch all posts from the last N hours, or 'count' mode to get N posts with cursor pagination.
Instructions
Get the authenticated user's home timeline. Use mode 'hours' to fetch all posts within a time window.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | 'count' (default): return `limit` posts. 'hours': fetch all posts from the last `limit` hours (max 500) | |
| limit | No | Number of posts to return (1-100), or hours to look back when mode is 'hours' | |
| cursor | No | Pagination cursor from a previous response (ignored in hours mode) | |
| format | No | Output format: 'json' (default) or 'digest' (compact text for LLM consumption) |