Catalog diff polling — added / removed endpoints since `since`
whats_newDetect added and removed endpoints in API catalogs since a given timestamp. Returns deltas with counts, enabling cheap polling for fresh changes without re-pulling the full catalog.
Instructions
Polling-friendly catalog diff. Body { since?, limit? } (default since=now-24h, limit=200, max 500). Returns added_endpoints[] (first_seen_at >= since AND is_active=true), removed_endpoints[] (flipped to is_active=false since), service-level counts, polls_in_window, and current active totals. Cheap ($0.001 USDC) so hourly polling stays under $1/month — perfect for aggregator agents that need a fresh delta without re-pulling the whole catalog. Internal ingest cron runs every 5 min, so polling more often than that returns identical data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | ISO 8601 timestamp. Default = now() - 24h. Cannot be older than 30 days or in the future. | |
| limit | No | Per-list cap (1..500, default 200). Applied independently to added_endpoints and removed_endpoints. |