# recent_news_count

How many articles mentioned this name in the last 7 days, at any relevance.

A integer signal column on the Tickerbot computed state table (21,082+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: News
- Category: News
- Type: integer
- Unit: count
- Update cadence: 15 min
- Intervals: 1d
- Universe: all tickers
- History: full · since 2015
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. Response payloads are real captures, sampled 2026-09-18 and trimmed; your run's values and dates will differ.

### The whole market, filtered on it — `/v2/scan` (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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

```bash
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` (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,recent_news_count" \
  -H "Authorization: Bearer YOUR_KEY"
```

## Related signals (News)

- [highly_relevant_news_count](https://tickerbot.io/docs/signals/highly_relevant_news_count.md)
- [news_sentiment_volatility](https://tickerbot.io/docs/signals/news_sentiment_volatility.md)
- [news_volume](https://tickerbot.io/docs/signals/news_volume.md)
- [news_volume_weighted_sentiment](https://tickerbot.io/docs/signals/news_volume_weighted_sentiment.md)

---

Full catalog: https://tickerbot.io/docs/signals/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/recent_news_count/
