read_social_results
Retrieve individual social posts and metrics from a completed analysis run. Filter by platform, keyword, or date, and paginate through results with a cursor for post-level detail.
Instructions
Fetches the individual social posts of a completed run, with metrics. Returns 409 if the run is incomplete.
Filter by source / keyword / date, and order with sort / direction.
Pass cursor until meta.next_cursor is null to fetch everything. Use this for post-level detail (use read_result_summary for the big picture).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Filter by post date (YYYY-MM-DD). | |
| sort | No | Sort key. Default published_at. | |
| limit | No | Items per page (1–100, default 50). | |
| token | Yes | Run identifier token returned by start_run. | |
| cursor | No | Opaque cursor returned in meta.next_cursor. Pass to fetch the next page. | |
| source | No | Filter by platform (multiple allowed). | |
| keyword | No | Filter by keyword (multiple allowed). | |
| direction | No | Sort order. Default desc. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| meta | Yes | Cursor-based pagination. Pass `next_cursor` as the next `cursor` until it is null to fetch everything. |