Brand Mentions API
Web-surface brand monitoring for agents.
The dashboard era gave you dashboards to read brand mentions. The agent era needs APIs that return structured mention data. This endpoint scans news articles, blog posts, forums, and social media for your brand, returns every mention with domain authority, sentiment, and date. One call returns up to 20 mentions; 3 credits (~$0.015). Your agent handles the rest. Pair this with AI Mentions API to see the complete picture: web surface + LLM surface = full brand presence.
POST /v1/brand/mentions · 3 credits / call
ABC Plumbing is highly rated in Austin with 4.8 stars and excellent same-day service.
Top-rated Austin plumbers include ABC Plumbing for emergency service.
For licensed plumbers in Austin, ABC Plumbing has strong reviews.
ABC Plumbing — 24/7 emergency response, 500+ reviews.
These prompts are the new reputation workflow.
Connect Local SEO Data as an MCP server once (60 seconds, below). Then your agent monitors brand mentions for you. Replace bracketed brand names with your own.
Pull web mentions for [ABC Plumbing Austin] from the last 7 days. Show me the total count, sentiment breakdown, and which domains mentioned us with the highest authority.
Pull web mentions for [my brand] vs [competitor1] and [competitor2] for the same week. Which brand gets mentioned most often in news and blogs? Which gets more positive framing?
Check web mentions for [my business] this week. Flag any negative mentions and tell me which ones came from high-authority sources.
Pull mentions of [my industry keyword] from the past month. Show me every blog and news site that wrote about competitors. These are my content outreach targets.
What you get back
Live response from POST /v1/brand/mentions for a sample Austin plumbing company.
{
"status": "success",
"credits_used": 3,
"data": {
"business_name": "ABC Plumbing Austin",
"total_mentions": 47,
"sentiment_breakdown": {
"positive": 32,
"neutral": 11,
"negative": 4
},
"mentions": [
{
"title": "Best Plumbers in Austin 2026",
"url": "https://localmagazine.com/best-plumbers",
"source_domain": "localmagazine.com",
"domain_authority": 42,
"sentiment": "positive",
"snippet": "ABC Plumbing Austin has established itself as a leader in emergency plumbing services, with an average rating of 4.8 stars across 847 reviews...",
"date": "2026-02-18"
},
{
"title": "Austin Plumbing Services Review",
"url": "https://austinservicesreview.com/plumbing-2026",
"source_domain": "austinservicesreview.com",
"domain_authority": 38,
"sentiment": "positive",
"snippet": "When we surveyed 50 Austin-area homeowners, ABC Plumbing Austin appeared in 12 recommendations for reliability and speed.",
"date": "2026-02-15"
},
{
"title": "Forum Discussion: Emergency Plumbing in Austin",
"url": "https://austinneighbors.forum/thread/emergency-plumbing",
"source_domain": "austinneighbors.forum",
"domain_authority": 28,
"sentiment": "neutral",
"snippet": "User mentioned ABC Plumbing as one option among several for emergency repairs. A few positive comments about their availability.",
"date": "2026-02-12"
}
]
}
}Everything you need to monitor web-surface brand reputation
Title, URL, snippet, sentiment, domain authority
Not just 'mentioned or not' — we capture the article/post title, full URL, preview snippet, sentiment classification (positive/neutral/negative), source domain, and domain authority (0–100). The domain authority helps you prioritize: a mention in a DA-60 news outlet matters more than a DA-15 blog.
Positive, neutral, or negative framing
Is your brand framed positively ('best in the industry'), neutrally ('one option among several'), or negatively ('avoid because')? Sentiment data feeds reputation tracking, customer-perception analysis, and competitive positioning.
Total mentions + sentiment counts
At-a-glance overview: 47 total mentions, 32 positive, 11 neutral, 4 negative. Track this weekly or monthly to spot reputation shifts early.
News, blogs, forums, social media
Web mentions come from diverse sources. Each mention includes the source domain and authority score, so you know if you were featured in a top-tier publication or a niche forum.
What AI-native operators ship with this
Reputation monitoring and alerts
Run a scheduled daily or weekly agent check for your brand mentions across the web. Flag new negative mentions from high-authority sources before they spread. Escalate reputation issues in real time.
→ For agenciesCompetitor mention tracking
Pull mentions for your top 3 competitors. See which ones dominate news coverage, which get more positive framing, which are mentioned alongside thought leadership. Understand competitive narrative in earned media.
→ Competitor Gap APIProspecting and due diligence
Before a partnership or acquisition, pull 30 days of web mentions for the prospect. Walk in knowing their media presence, reputation sentiment, and recent press coverage. The diagnosis is data-driven, not anecdotal.
→ For consultantsContent and outreach targets
Pull web mentions for a competitor or industry keyword. Identify every blog, news site, and forum that wrote about the space. Build a targeted outreach list of high-authority, relevant publications.
→ For marketersWhy not use Mention.com, Brand24, Talkwalker, or Meltwater?
Traditional brand monitoring tools (Mention.com, Brand24, Talkwalker, Meltwater, Brandwatch, Mediatoolkit) scan web mentions and charge $100–$1000+/month as seat-based subscriptions. They're designed for dashboards: humans log in, read reports, take action. For agents that need to call an endpoint 50+ times per month and act on the response programmatically, API pricing wins. Here's how the options stack up.
| Approach | Cost per call | Setup | Mention detail | Agent-ready |
|---|---|---|---|---|
| Manual web search (Google, Reddit, Twitter) | $0 but ~15 min labor per brand | None | You see whatever you find | No |
| Mention.com | $99–499/mo (~$3.30–16.60 per query) | Sign up + dashboard login | Mention count + sentiment | Dashboard UI only |
| Brand24 | $79–299/mo (~$2.60–10 per query) | Sign up + dashboard login | Mention count + sentiment | Dashboard UI + limited API |
| Talkwalker | $500–2000+/mo (~$16.50–65 per query) | Enterprise sales process | Deep sentiment + image/video | Dashboard, API available |
| Meltwater | $1000–5000+/mo (~$33–165 per query) | Enterprise sales process | Print, broadcast, web, social | Dashboard, custom integration |
| Brandwatch | $500–3000+/mo (~$16.50–100 per query) | Enterprise sales process | Social + web + consumer research | Dashboard, enterprise API |
| Mediatoolkit | $99–499/mo (~$3.30–16.60 per query) | Sign up + dashboard | News, social, web mentions | Dashboard + webhook API |
| Local SEO Data Brand Mentions API | $0.015 per call | API key + 1-line MCP config | URL, snippet, sentiment, DA score | Native MCP, agent-first |
Use it from your agent
Two integration surfaces: MCP for clients that speak MCP, REST API for everything else.
Direct MCP integration
Drop-in support in Claude Desktop, OpenClaw, Hermes Agent, and any MCP-aware client.
Add to your client's MCP config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"localseodata": {
"url": "https://mcp.localseodata.com",
"headers": {
"Authorization": "Bearer sk_live_..."
}
}
}
}REST API
For Perplexity Computer, ChatGPT Custom GPTs, custom agents, and any platform that calls REST endpoints directly.
Base URL:
api.localseodata.comSee the docs for endpoint reference and auth.
Your first call in three lines
Core parameter: `business_name` (the brand name or company to track). Optional `limit` caps results (default 20, max 100). One call costs 3 credits (~$0.015) and returns up to 20 mentions from news, blogs, forums, and social media with sentiment and domain authority.
curl -X POST https://api.localseodata.com/v1/brand/mentions \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"business_name": "ABC Plumbing Austin",
"limit": 20
}'$0.015 per mention call
Pay-as-you-go starts at $5. No monthly minimums. No per-seat licenses. No subscription required. Funds never expire.
Common questions
What is the Brand Mentions API?+
How is Brand Mentions different from AI Mentions?+
Where does this mention data come from?+
What sentiment levels does the API return?+
What is domain authority and why does it matter?+
Can I track competitor mentions?+
How often should I call the Brand Mentions API?+
Can AI agents use the Brand Mentions API directly?+
claude_desktop_config.json (or any MCP-aware client) and the agent calls this endpoint from any prompt. REST: any agent that can make HTTPS calls — ChatGPT Custom GPTs, Perplexity Computer, custom Python agents — hits api.localseodata.com directly with the Bearer token. You don't write integration code. You write the prompt.How does this compare to Mention.com, Brand24, or Talkwalker?+
What changed in 2026 that made this category exist?+
Does this track social media mentions?+
How is this different from traditional brand monitoring?+
Often used in the same agent prompt
AI Mentions API
Brand mentions in ChatGPT, Claude, Gemini, Perplexity — the LLM surface.
POST /v1/reviews/velocityReview Velocity
Review growth and sentiment trends over time.
POST /v1/audit/reputationReputation Audit
Composite: reviews + sentiment + cross-platform overview.
POST /v1/competitor/gapCompetitor Gap API
Compare your presence vs competitors across all metrics.
Track brand presence across the web the moment it happens.
50 free credits on signup. Your first mention check happens through your agent, not a dashboard.