provider signals GET
/api/projects/{project_id}/signals/scout/runs/findings/summary/ @utdk/posthog
/api/projects/{project_id}/signals/scout/runs/findings/summary/ Summarise recently emitted findings across the fleet
Return a cheap fleet-wide tally of the findings the scout troop emitted in the recent window — the total count, the number of distinct scouts behind them, and the latest emission time. Backs the 'Scout findings' callout so it renders from one query instead of the client paging through the whole runs window. Counts only runs that emitted at least one finding (`emitted_count > 0`) within the last `window_hours` (default 72), capped to the most recent 120 emitted runs so the count matches what the findings list renders. Strictly team-scoped.
- project_id path required
- Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- string
- window_hours query
- Lookback window in hours over runs' `created_at` (default 72, hard cap 168).
- integer
Try it
Authentication
Configure credentials for PostHog API
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.signalsScoutRunsFindingsSummary()