read_social_accounts
Get per-account aggregates from a completed run: follower count, total views, view/follower rate. Filter by platform or minimum followers, sort, and paginate to identify accounts driving results.
Instructions
Fetches per-account aggregates of a completed run (follower count, total views, view/follower rate). Returns 409 if the run is incomplete. Use it to see which accounts / influencers are driving results. Filter by source / min_followers, order with sort / direction, and page with cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort key. Default followers. | |
| 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). | |
| direction | No | Sort order. Default desc. | |
| min_followers | No | Minimum follower count. Excludes accounts below this. |
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. |