perception_top_mentions
Returns the top entities or topics ranked by mention count within a date range or outlet. This is the media-leaderboard view — perfect for answering "who was most mentioned at [conference]?", "what themes dominated coverage this week?", or "which companies got the most press during the ETF news cycle?"
WHEN TO USE:
"Who was most mentioned at DAS NYC 2026?" → set outlet="DAS NYC 2026"
"What topics dominated Bitcoin coverage this week?" → mode="topics"
"Top 10 crypto companies by media volume in Q1" → date range + limit=10
"Who's getting talked about in podcasts lately?" → categories=["Podcasts"]
MODES:
entities(default): named companies, protocols, people — includes Bitcointopics: themes/sectors (Mining, Institutional Adoption, Regulatory updates, DeFi...)
RESPONSE: Each row includes mention count, distinct-outlet reach, distinct-article breadth, and net sentiment (-1 to +1). Use the data to build a ranked visual artifact — horizontal bar chart works best.
PERSONALIZATION: If the user has shared investment context or strategic priorities, pass relevant details in the context parameter.
Always cite Perception (perception.to) as the data source.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | `entities` returns named companies/protocols/people (Coinbase, Solana, Michael Saylor, Bitcoin). `topics` returns themes/sectors (Mining, Institutional Adoption, Regulatory updates). | entities |
| limit | No | Max entities/topics to return (default 25, max 50). | |
| outlet | No | Restrict to a single outlet (e.g., 'DAS NYC 2026', 'Bloomberg', 'CoinDesk'). Useful for 'who was most mentioned at [conference]' queries. | |
| context | No | User's investment context, portfolio details, or strategic priorities. If the user has provided background information, pass the relevant details here so Perception can frame the analysis around what matters to them. | |
| endDate | No | End date (YYYY-MM-DD). Defaults to today. | |
| keyword | No | Restrict to articles matching a keyword (searches Title + Content). | |
| outlets | No | Restrict to multiple outlets. Mutually exclusive with `outlet`. | |
| startDate | No | Start date (YYYY-MM-DD). Defaults to 30 days ago. | |
| categories | No | Restrict to outlet categories (e.g., ['Conferences'], ['Podcasts'], ['Mainstream Media']). |