Overview
Mention is a platform for real-time media monitoring and social listening, designed to help businesses track their online presence and manage their brand reputation. Established in 2009, its core functionality revolves around collecting mentions of predefined keywords across a broad spectrum of internet sources, including social media platforms, news sites, blogs, forums, and review sites. This aggregation allows users to gain insights into public perception, identify emerging trends, and respond to conversations relevant to their brand or industry.
The platform is particularly suited for scenarios requiring immediate awareness of online discussions. For example, during a public relations crisis, Mention's real-time alerts can notify communication teams of negative sentiment spikes, enabling prompt responses to mitigate potential damage. Similarly, marketing teams can use it for competitor analysis, tracking how rival brands are perceived, what campaigns they are running, and how their audience engages with their content. This provides a comparative benchmark for strategic adjustments.
Beyond crisis management and competitive intelligence, Mention supports influencer identification by tracking individuals who frequently discuss specific topics or brands. This can inform influencer marketing strategies by identifying relevant voices with engaged audiences. The platform also offers tools for sentiment analysis, categorizing mentions as positive, negative, or neutral, which helps in understanding overall brand health and customer satisfaction. While Mention provides an API for data integration, its primary interface is a web application designed for marketing and communication professionals, making the data accessible without extensive technical knowledge. The platform's capabilities extend to scheduling social media posts and generating reports on key metrics, consolidating several aspects of digital presence management into a single tool.
Key features
- Real-time Monitoring: Tracks keywords across web pages, news, blogs, forums, and social media platforms in real time to capture immediate discussions and trends.
- Sentiment Analysis: Automatically categorizes mentions as positive, negative, or neutral, providing an overview of public perception and brand sentiment.
- Alerts and Notifications: Configurable alerts deliver instant notifications for critical mentions, sentiment shifts, or high-volume discussions directly to users via email or within the application.
- Competitor Analysis: Allows users to monitor competitor activities, brand mentions, and audience engagement to benchmark performance and identify market opportunities.
- Influencer Identification: Identifies key opinion leaders and influential voices discussing relevant topics, supporting influencer marketing and outreach strategies.
- Reporting and Analytics: Generates customizable reports with data visualizations on mention volume, sentiment, source distribution, and top influencers, aiding in performance measurement.
- Social Media Publishing: Integrates with social media management features, enabling users to schedule and publish content directly to various social platforms from the Mention dashboard.
- Team Collaboration: Provides features for assigning tasks, adding notes to mentions, and sharing insights with team members to streamline workflow.
- API Access: Offers an API for developers to integrate Mention data into custom applications or dashboards, facilitating advanced data analysis and automation.
Pricing
Mention offers tiered pricing plans structured around the number of alerts, mentions, and social accounts supported. Annual subscriptions typically provide a discount compared to monthly billing.
| Plan | Monthly Cost | Key Features |
|---|---|---|
| Free Alert | $0 | 1 alert, 1,000 mentions/month, 1 social account |
| Solo | $49 | 5 alerts, 5,000 mentions/month, 5 social accounts, 1 user |
| Pro | $99 | 10 alerts, 10,000 mentions/month, 10 social accounts, 3 users |
| Team | $199 | Unlimited alerts, 20,000 mentions/month, 20 social accounts, 5 users |
| Company | Custom | Tailored for large organizations with higher mention volumes and advanced features. |
For detailed and up-to-date pricing information, refer to the official Mention pricing page.
Common integrations
Mention provides integrations designed to extend its capabilities and streamline workflows within existing marketing and communication stacks. While direct native integrations vary, its API facilitates connections with other platforms.
- Social Media Platforms: Direct connections to platforms like X (formerly Twitter), Facebook, and Instagram for publishing and monitoring.
- Content Management Systems (CMS): Via API, data can be pulled into CMS dashboards for contextual content strategy.
- CRM Systems: Customer insights from mentions can be integrated with CRM platforms like Salesforce Marketing Cloud to enhance customer profiles and personalize outreach.
- Business Intelligence (BI) Tools: Mention's API allows for exporting data to BI tools for advanced analytics and custom reporting.
- Collaboration Tools: Integrations with tools like Slack or Microsoft Teams can push real-time alerts to team communication channels.
Alternatives
- Brandwatch: Offers comprehensive consumer intelligence and social listening with advanced analytics for large enterprises.
- Sprout Social: Provides social media management, engagement, and analytics tools, often favored for its unified dashboard approach.
- Meltwater: Specializes in media intelligence and social listening, offering extensive news and social media monitoring capabilities.
- Hootsuite: A widely used social media management platform that also includes social listening features for brand tracking and engagement.
- Talkwalker: Focuses on consumer intelligence and provides real-time social listening, analytics, and reporting for brands.
Getting started
To begin using Mention, users typically start by creating an account and setting up their first alert. This involves defining the keywords, brands, or topics they wish to monitor. The following example demonstrates a conceptual API interaction using Python to retrieve recent mentions, assuming authentication has been handled and an API client is configured. This illustrates how developers can programmatically access data from Mention.
import requests
# Replace with your actual API key and alert ID
API_KEY = "YOUR_MENTION_API_KEY"
ALERT_ID = "YOUR_ALERT_ID"
BASE_URL = "https://api.mention.com/api/v1"
HEADERS = {
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json"
}
def get_recent_mentions(alert_id, limit=10):
"""Fetches recent mentions for a given alert ID."""
endpoint = f"{BASE_URL}/alerts/{alert_id}/mentions"
params = {"limit": limit, "sort": "date", "order": "desc"}
try:
response = requests.get(endpoint, headers=HEADERS, params=params)
response.raise_for_status() # Raise an exception for HTTP errors
mentions_data = response.json()
if mentions_data and 'mentions' in mentions_data:
print(f"Retrieved {len(mentions_data['mentions'])} recent mentions for alert ID {alert_id}:")
for mention in mentions_data['mentions']:
print(f"- ID: {mention.get('id')}")
print(f" Source: {mention.get('source_type')}")
print(f" Sentence: {mention.get('sentence_with_keywords', 'N/A')}")
print(f" URL: {mention.get('url', 'N/A')}")
print(f" Created At: {mention.get('created_at')}")
print("---")
else:
print(f"No mentions found or unexpected data structure for alert ID {alert_id}.")
except requests.exceptions.HTTPError as http_err:
print(f"HTTP error occurred: {http_err}")
except requests.exceptions.RequestException as req_err:
print(f"Request error occurred: {req_err}")
except ValueError:
print("Error decoding JSON response.")
if __name__ == "__main__":
# In a real application, API_KEY and ALERT_ID would be loaded securely
# For this example, replace placeholders with actual values from your Mention account.
get_recent_mentions(ALERT_ID)
This Python script utilizes the requests library to make an authenticated GET request to the Mention API's mentions endpoint. It targets a specific alert ID and retrieves a limited number of the most recent mentions, then prints key details such as the mention ID, source type, relevant sentence, URL, and creation timestamp. Developers can expand upon this basic interaction to filter mentions by sentiment, source, or date range, and integrate the data into custom dashboards or analytics platforms. Comprehensive details on available endpoints and parameters are provided in the Mention API reference documentation.