addedInput schema / properties / api_key / description
Added value: +"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."
addedInput schema / properties / hook_id / description
Added value: +"Filter to the outcomes reported against ONE hook (its id from list_hooks / a generate response). Omit for every hook."
addedInput schema / properties / limit / description
Added value: +"Max outcomes to return, 1-200. Above the ceiling is an invalid_request, never a silent truncation."
addedInput schema / properties / limit / maximum
Added value: +200
addedInput schema / properties / limit / minimum
Added value: +1
addedInput schema / properties / offset / description
Added value: +"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."
addedInput schema / properties / offset / maximum
Added value: +9223372036854776000
addedInput schema / properties / offset / minimum
Added value: +0
addedInput schema / properties / platform / description
Added value: +"Filter to outcomes reported for one platform. Omit for all."
addedInput schema / properties / platform / enum
Added value: +[
+ "tiktok",
+ "instagram",
+ "youtube",
+ "x",
+ "other",
+ null
+]
addedInput schema / properties / since / description
Added value: +"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."
addedOutput schema / description
Added value: +"A page of the outcomes THIS account has reported, newest first. Free."
addedOutput schema / properties
Added value: +{
+ "limit": {
+ "description": "Page size actually applied.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "offset": {
+ "description": "Offset this page started at.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "outcomes": {
+ "description": "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).",
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "total": {
+ "description": "Rows matching the filters ignoring paging.",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+}
removedOutput schema / title
Removed value: -"list_outcomesDictOutput"