list_records
List records in your Dataset (Prowlo’s indexed posts from crawled sources). NOT a live Reddit call — free, rate-limited only. Filter by view (all/matched), subreddits, platforms, tags, keyword, any (brand-variant OR-group), include/exclude, intent, score/comments, date range, watcherId. Paginated via cursor. Note: tags / watcherId are record-level, so passing either uses the "matched" view automatically. Records whose keyword match was AI-judged coincidental are hidden by default (pass includeSuppressed:true to see them; each record carries a verification field). A filtered page can hold fewer than limit items — page until nextCursor is null. Long record bodies are trimmed to keep the page scannable — use get_record for a record’s full body. (requires a free Prowlo account — call it to get a signup link)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ISO date upper bound (created on platform) | |
| any | No | Match if title/body contains ANY of these terms (brand monitoring → your brand + variants) | |
| from | No | ISO date lower bound (created on platform) | |
| tags | No | Restrict to records carrying any of these rule tags | |
| view | No | "matched" = only records that matched a Watcher rule | all |
| limit | No | Max records to return, 1-40 (default 25); page with cursor for more | |
| cursor | No | Pagination cursor from a previous response | |
| intent | No | (COMING SOON — not yet available) Filter by author intent: BUYING, SELLING, or DISCUSSING. Posts are not intent-classified yet, so this filter currently returns no matches. | |
| exclude | No | None of these may appear in title/body | |
| include | No | Stricter: EVERY term must appear in title/body | |
| keyword | No | Single free-text term in title/body | |
| minScore | No | Minimum post score (platform upvotes/points) | |
| platforms | No | e.g. ["reddit","hackernews"] | |
| watcherId | No | Restrict to records from one of your Watchers (by id) | |
| subreddits | No | Restrict to these subreddits/channels (no r/ prefix) | |
| minComments | No | Minimum number of comments | |
| includeSuppressed | No | Include records whose keyword match was judged "coincidental" by AI mention verification (the term appeared but the post is not about it). Default false — such records are hidden. Every returned record carries a `verification` field (confirmed | coincidental | pending | clear) either way. |