List digests
list_digestsRetrieve paginated weekly digests of competitor activities. Filter by competitor or date range; use cursor for backward paging.
Instructions
Wraps GET /digests. Returns cursor-paginated weekly digests (one per competitor per batch day) — the LLM-synthesized summaries. Unlike list_activities, pagination here has no total; use has_more / next_cursor only.
Filters: competitor_id (narrow to one competitor), from / to (ISO 8601 date-time window on period_start).
Chaining: For 'what happened last week across all competitors', prefer list_latest_digests — it's a one-shot. Use this when paging backward through history, or filtering to one competitor.
Errors: invalid_parameter, invalid_cursor, unauthorized, rate_limited.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Inclusive upper bound on `period_start`, ISO 8601 with offset. | |
| from | No | Inclusive lower bound on `period_start`, ISO 8601 with offset. | |
| limit | No | Page size. Max 500. Smaller pages keep round-trips responsive and reduce tool-result truncation risk. | |
| cursor | No | Opaque cursor from a previous response's `pagination.next_cursor`. Omit on the first call. | |
| competitor_id | No | Narrow to one competitor's digests. Omit for all tracked competitors. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| pagination | Yes | Shared cursor-pagination envelope. |