For Agents
Search content, find influencers, monitor mentions, and analyse backlinks across the BuzzSumo index. Authenticate with an api_key query parameter.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the BuzzSumo API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with BuzzSumo API.
Search articles by keyword, domain, or topic across the BuzzSumo index
Identify influencers by topic and engagement
Discover trending content within a topic or window
Set up alerts to monitor brand mentions and keywords
GET STARTED
Use for: Search for the most-shared articles on a given topic this month, Find influencers writing about generative AI, List all current alerts on my BuzzSumo account, Set up a new alert for mentions of my brand
Not supported: Does not publish to social platforms, manage email campaigns, or run paid ads — use for content discovery, influencer research, media monitoring, and backlink analysis only.
Jentic publishes the only available OpenAPI specification for BuzzSumo API, keeping it validated and agent-ready. BuzzSumo is a content discovery and media monitoring platform used by marketers, PR teams, and content strategists. The API exposes article and trend search, influencer discovery, alert-driven media monitoring, project organisation, and backlink analysis. Authentication is by API key passed as the api_key query parameter.
Retrieve mentions and engagement stats for an existing alert
Organise saved searches into projects
Analyse backlinks pointing to a specific URL or domain
Patterns agents use BuzzSumo API for, with concrete tasks.
★ Content Strategy Research
Use article and trend searches to identify what is performing in a topic area before commissioning new content. Marketing teams use this to prioritise topics by engagement and to spot emerging trends within hours rather than days. /search/articles and /search/trends are the workhorses.
Run /search/articles for the topic 'AI agents' over the last 30 days, sort by total engagement, and return the top 10 with author and publication
Media Monitoring and Brand Alerts
Configure alerts on brand names, product names, or competitor terms via the alerts endpoints, then poll /alerts/{id}/mentions for new captured mentions. PR and comms teams use this to react quickly to coverage and adverse mentions. Alerts can be paired with /alerts/{id}/stats for trend reporting.
Create an alert for 'Acme product launch', poll /alerts/{id}/mentions every hour, and post new captures to a Slack channel
Influencer Discovery for Outreach
Use /search/influencers to identify writers and creators with reach in a target topic, then enrich the list with /search/articles/sharers to see who shared specific URLs. PR teams use this to build outreach lists for product launches in days rather than weeks.
Search /search/influencers for the topic 'developer tools', export the top 50 with their engagement scores, and write to a CRM as a campaign list
Backlink Analysis
Pull backlinks for a target URL or domain via the backlinks endpoints to understand who is linking to your content or a competitor's. SEO teams use this for link profile audits and competitive analysis. Backlink data updates regularly so periodic pulls give a moving picture.
Fetch backlinks for a competitor blog post URL, group by referring domain, and return the top 20 referring domains by link count
AI Agent Content Research
Through Jentic, an AI agent can run BuzzSumo content research on a marketer's behalf — surfacing top articles, influencers, and mentions. Agents discover the right operation by intent, load the schema, and execute, removing the need to read API docs.
Search Jentic for 'find top buzzsumo articles', load the schema for GET /search/articles, and execute with topic and date-range filters
18 endpoints — jentic publishes the only available openapi specification for buzzsumo api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/search/articles
Search articles by topic and filters
/search/trends
Discover trending content
/search/influencers
Find influencers by topic
/alerts
Create a new alert
/alerts/{alert_id}/mentions
Read mentions captured by an alert
/alerts/{alert_id}/stats
Read alert engagement stats
/projects
List projects
/search/articles
Search articles by topic and filters
/search/trends
Discover trending content
/search/influencers
Find influencers by topic
/alerts
Create a new alert
/alerts/{alert_id}/mentions
Read mentions captured by an alert
Three things that make agents converge on Jentic-routed access.
Credential isolation
BuzzSumo API keys are stored encrypted in the Jentic vault and attached as the api_key query parameter at execution time. Raw keys never enter the agent's context window.
Intent-based discovery
Agents search by intent (e.g., 'find top buzzsumo articles') and Jentic returns the matching search operation with its input schema.
Time to first call
Direct BuzzSumo integration: a day or two for auth, pagination, and rate limit handling. Through Jentic: under an hour for the first working call.
Alternatives and complements available in the Jentic catalogue.
Specific to using BuzzSumo API through Jentic.
Why is there no official OpenAPI spec for BuzzSumo API?
BuzzSumo does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call BuzzSumo API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the BuzzSumo API use?
BuzzSumo uses an API key passed as the api_key query parameter on each request. Through Jentic, the key is stored in the encrypted vault and attached at execution time so it never enters the agent's context.
Can I create alerts with the BuzzSumo API?
Yes. POST /alerts creates a new alert; GET /alerts lists existing alerts; DELETE /alerts/{alert_id} removes one. Captured mentions are read via GET /alerts/{alert_id}/mentions and engagement stats via GET /alerts/{alert_id}/stats.
What are the rate limits for the BuzzSumo API?
BuzzSumo does not document hard rate limits in the spec; limits are tied to your subscription plan. For high-volume search jobs, paginate carefully and back off on 429 responses rather than retrying immediately.
How do I find top articles on a topic through Jentic?
Run pip install jentic, then search Jentic with the query 'find top buzzsumo articles', load the schema for GET /search/articles, and execute with the q parameter set to your topic plus optional date and engagement filters.
Can I analyse backlinks with this API?
Yes. The backlinks resource returns referring URLs and domains for a given target, which is useful for link profile audits and competitive SEO research.
/alerts/{alert_id}/stats
Read alert engagement stats
/projects
List projects