list_outcomes
List the posted outcomes THIS account has reported, newest first. Free (WP-LIFE).
Retrieve submitted telemetry in bulk. Args: platform
(tiktok|instagram|youtube|x|linkedin|other), since (ISO timestamp), hook_id,
limit (1-200, default 50), offset (>=0), api_key. Rows include the feature snapshot.
Returns {outcomes:[...], limit, offset, total}. Errors: unauthorized,
invalid_request, rate_limited.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max outcomes to return, 1-200. Above the ceiling is an invalid_request, never a silent truncation. | |
| since | No | Return only rows created at or after this UTC timestamp. Compared LEXICALLY against stored 'YYYY-MM-DDTHH:MM:SSZ' values, so pass that exact format (a date-only string or a unix epoch silently selects the wrong window). Omit for no lower bound. | |
| offset | No | Number of rows to skip for paging, 0-9223372036854775807. Page with offset += the limit you actually requested; `total` in the response is the unpaged count. The ceiling is SQLite's largest bindable integer: above it the read could only ever have been a 500, so it is a typed invalid_request instead. | |
| api_key | No | API key for this call. Omit to fall back to the Authorization: Bearer / X-API-Key request header (streamable-HTTP only), then the VHGENGINE_API_KEY env var (the stdio default). No key resolvable -> unauthorized. | |
| hook_id | No | Filter to the outcomes reported against ONE hook (its id from list_hooks / a generate response). Omit for every hook. | |
| platform | No | Filter to outcomes reported for one platform. Omit for all. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size actually applied. | |
| total | No | Rows matching the filters ignoring paging. | |
| offset | No | Offset this page started at. | |
| outcomes | No | Each row is the reported outcome plus a snapshot of the hook at report time (hook_text, topic, mode, archetype, claim_type, score_total, score_source, prompt_version, tags). |