Wikipedia Page Views
get_wikipedia_viewsWikipedia attention tracker: daily page views of each covered company's Wikipedia article, with a 30-day rolling average and a relative 30-day z-score. Retail and media attention shows up in Wikipedia lookups before (and during) big price moves -- a z-score spike means the name is suddenly being researched far more than its own baseline. One row per ticker per day: ticker, company name, date, raw views, avg_30d, zscore_30d.
Screen zscore_30d_gte=3 over recent dates for fresh attention spikes, or pull one
ticker's history to line attention up against price. Pagination: results are capped at 50,000 rows
per request; when the response has has_more=true, pass next_cursor's date and
ticker back as cursor_date and cursor_ticker to fetch the next page.
Requires an Alphanume Pro API key. A 403 PRO_SUBSCRIPTION_REQUIRED or DATE_RANGE_RESTRICTED error means the key's plan does not cover the request -- it does not mean the data is missing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Exact date, YYYY-MM-DD. Cannot be combined with the date range parameters. | |
| ticker | No | Ticker symbol filter, e.g. 'AAPL'. Case-insensitive. | |
| date_gt | No | Start of date range, exclusive (YYYY-MM-DD). | |
| date_lt | No | End of date range, exclusive (YYYY-MM-DD). | |
| date_gte | No | Start of date range, inclusive (YYYY-MM-DD). | |
| date_lte | No | End of date range, inclusive (YYYY-MM-DD). | |
| max_rows | No | Maximum data rows to return to the client (applied after the API responds). Default 500. Use 0 for no cap. Prefer narrowing with date/ticker filters over raising this. | |
| cursor_date | No | Pagination: the 'date' value from the previous response's next_cursor. Must be sent together with cursor_ticker. | |
| cursor_ticker | No | Pagination: the 'ticker' value from the previous response's next_cursor. Must be sent together with cursor_date. | |
| zscore_30d_eq | No | Exact 30-day z-score match. Cannot be combined with the z-score range parameters. | |
| zscore_30d_gt | No | Only rows with 30-day z-score > this value. | |
| zscore_30d_lt | No | Only rows with 30-day z-score < this value. | |
| zscore_30d_gte | No | Only rows with 30-day z-score >= this value. zscore_30d_gte=3 finds extreme attention spikes. | |
| zscore_30d_lte | No | Only rows with 30-day z-score <= this value. |