Find outliers and anomalies in structured data — ideal as a second step after pulling records from Google Sheets, Airtable, Supabase, Notion databases, HubSpot, Financial APIs, GitHub, NPM, or any source that returns rows of JSON. Fully stateless: send known-good rows as training and suspect rows as test in ONE call. Returns per-row anomaly scores, confidence levels, and the top features explaining WHY each row was flagged.
Typical workflow: (1) Pull data from another tool (e.g. Google Sheets, Supabase query, HubSpot deals). (2) Pass the first N rows as training (normal baseline). (3) Pass remaining or new rows as test. (4) Report which rows are anomalous and why.
Works on JSON objects, numbers, text, arrays. No separate training step required.
Examples:
- Spreadsheet QA: Pull 500 sales rows from Sheets → train on first 400 → test last 100 → flag outlier entries
- Financial screening: Get ratios for 50 stocks from a financial API → find anomalous ones
- CRM hygiene: Pull HubSpot deals → flag deals with unusual discount/value patterns
- Dependency audit: Get NPM package metrics → flag packages with anomalous quality scores
- Commit review: Pull GitHub commit metadata → flag unusual commit patterns