recent_news_count
How many articles mentioned this name in the last 7 days, at any relevance.
Swap YOUR_KEY for a key from /dashboard/keys. Responses are real captures from 2026-09-18, trimmed.
The whole market, filtered on it /v2/scan
Live — the whole market, ranked by this column
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "recent_news_count IS NOT NULL", "order": "recent_news_count", "columns": "recent_news_count" }'As-of — the same scan at a past date
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "recent_news_count IS NOT NULL", "order": "recent_news_count", "columns": "recent_news_count", "asof": "2026-06-28" }'Its history /v2/series
History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,recent_news_count" \
-H "Authorization: Bearer YOUR_KEY"Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.