Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/API/Semrush
Semrush

Semrush API

Yes. Semrush publishes a public REST API. See developer.semrush.com/api for pricing details.

MCP also available
Public REST API documentedAgent-readiness 8/10
Data from Buddy's database, auto-rechecked weekly

What is the Semrush API?

Semrush's REST API is gated to the Advanced plan and above ($455.67/mo annual, $549 monthly). Lower tiers (SEO and Pro+) get MCP access but not direct API endpoints. The API covers four product lines: SEO API (domain reports, keyword research, backlinks), Trends API (separate subscription), Projects API (Position Tracking, Site Audit, campaigns), and Local API (listing management, map rank tracking).

Pricing is unit-based with consumption varying by endpoint and rows returned. Monthly unit budgets are shared with the MCP server on the same plan, so agencies running both should track consumption carefully.

API-key authentication via header for most endpoints; OAuth 2.0 supported for the Projects API. First-party SDKs, an OpenAPI spec, and webhooks were not surfaced on the public developer docs I checked, confirm against the latest reference before depending on any of them.

For the broader picture: Semrush review, full pricing breakdown, .

HOOK IT TO YOUR STACK

Real Semrush API calls you'll write

semrush-apirest
#Get the top organic keywords for a domain
GET/v3/site-explorer/organic-keywords?target=mysite.com&limit=10
200 OK · 10 results
marketing automationpos 4 · vol 12.4k
email marketing softwarepos 6 · vol 8.9k
seo tools 2026pos 8 · vol 6.3k
best crm small businesspos 12 · vol 4.6k
Cron daily to track ranking shifts.
semrush-apirest
#Pull a competitor's backlink profile
GET/v3/site-explorer/backlinks?target=rival.com&limit=100
200 OK · 100 backlinks
Referring domains1,847
Domain Rating78
New backlinks (30d)+142
Lost backlinks (30d)-38
Pipe into a weekly Slack report.
semrush-apirest
#Trigger a fresh site audit
POST/v3/site-audit/scan
202 Accepted · scan_id: 7f2a
Statusqueued
Estimated finish~4 min
Webhook callbackconfigured
Last scan issues47 (12 critical)
TMB SCORE FOR SemrushAgent fit: 8/10
Read review →

Endpoints illustrative. Confirm exact paths against the live API docs before integrating.

What Semrush exposes

Semrush exposes data through three main developer surfaces. The MCP server is included on every paid plan (SEO, Pro+, Advanced) and on AI Visibility add-on subscriptions, Semrush is one of the more aggressive SEO vendors at pushing agent access broadly. The REST API is gated to Advanced+ only, with API integration as a headline feature of that tier. Looker Studio integration ships on Pro+ and Advanced for no-code dashboarding. Daily Analytics requests are capped by plan (3,000 / 5,000 / 10,000 from SEO through Advanced) and shared across endpoints. Coverage spans backlinks, keyword research, SERP analysis, traffic analytics, AI visibility reports, and content optimization, the broadest endpoint surface of any SEO tool.

Pricing, limits, and integration

Semrush uses an API units consumption model: every call costs a number of units that varies by endpoint and rows requested. Monthly unit budgets are tier-gated and shared with MCP usage on the same plan. The full REST API is gated to the Advanced plan and above ($455.67/mo annual, $549 monthly), SEO and Pro+ plans get MCP only, not direct API access. Authentication is API-key based via header for the standard endpoints; OAuth 2.0 is supported for the Projects API. Endpoint categories: SEO API (domain reports, keyword research, backlinks, organic/paid search), Trends API (traffic, market, audience insights, separate subscription), Projects API (Position Tracking, Site Audit, campaign management), and Local API (listing management, map rank tracking). No first-party SDKs and no OpenAPI spec documented. No webhooks. Use MCP on any plan for LLM-driven flows; reach for the direct API on Advanced+ for code-driven pipelines, scheduled jobs, and dashboards.

How much does the Semrush API actually cost?

Verify on docs

Semrush publishes an API, but per-tier gating wasn't extracted automatically.

  • Most likely scenario: API access is either included in all paid plans, or it's gated to higher tiers and we need to verify on the live docs page.
  • Until verified, treat the question "which plan unlocks the API" as open. Don't budget on the assumption it's free with the cheapest paid plan.

Semrush subscription pricing

PlanMonthlyAnnual / mo
Pro$139$117.33
Guru$249$208.33
Business$499$416.66

⚠ Per-tier API gating not yet structured for Semrush. Confirm which plans unlock API access on the live docs.

Source: semrush.com/pricing. Verified 2026-06-07.

API at a glance

Auth method
SDK languages
OpenAPI spec
Webhooks
Site Audit completion events ("Completed Site Audit", "New Task for Site Audit Campaign") are exposed via the official Zapier integration. Direct REST webhook subscriptions not documented separately.
Structured outputs
No-code automation
Zapier

Webhooks: Site Audit completion events ("Completed Site Audit", "New Task for Site Audit Campaign") are exposed via the official Zapier integration. Direct REST webhook subscriptions not documented separately.

Which AI clients can read Semrush data?

Not every AI assistant supports MCP natively. Here's the per-client picture for Semrush specifically.

ClientSupportNotes
Claude (Desktop/Web)Native MCPConnect via the Semrush MCP URL in Claude Desktop settings.
Claude CodeNative MCP
ChatGPTVia connectorsWorks via ChatGPT custom connectors (Plus tier+). Rougher setup than Claude Desktop.
CursorNative MCP
CodexNative MCP
WindsurfNative MCP
ClineNative MCP
GeminiAPI-only (custom code)Gemini chat has no native MCP client; call the API from custom code.
n8nAPI-only (custom code)No first-party n8n node; integrate via HTTP Request or community workflow.

Semrush also has an MCP server

If you're wiring Semrush into Claude / Cursor / Codex, the MCP server is usually less code than the REST API.

See Semrush MCP page

What you can build with the Semrush API

Three personas, three different shapes of build. Pick the row that matches how you actually ship.

SOLO DEV / FOUNDER

Glue Semrush into your daily workflow

  • Pull a digest of ranking changes into your morning Slack
  • Trigger a one-off backfill when something looks off
  • Pipe data into your own SQLite for ad-hoc queries
Effort: A weekend, one Node or Python script
AGENCY / CONSULTANT

Sell Semrush reporting at scale

  • White-label Semrush data into client-branded dashboards
  • Run scheduled multi-account reports without logging into the Semrush UI
  • Cross-reference with the rest of the client's stack (CRM, analytics, ad spend)
Effort: 1-2 weeks, hits multi-tenant auth quickly
IN-HOUSE ENGINEER

Production pipelines for Semrush

  • Real-time sync into your warehouse on a cron
  • Custom alerts the dashboard's built-in alerting can't express
  • Backfill + idempotency handling for Semrush data older than the dashboard exposes
Effort: Multi-week project, expect rate-limit tuning

Quickstart template

# Starter template — endpoint paths and SDK package names come from
# the Semrush API docs: https://developer.semrush.com/api/

curl -X GET "https://developer.semrush.com/<your-endpoint>" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json" | jq .

Template only. Endpoint paths, exact base URL, and auth header format come from developer.semrush.com/api.

Limits and gotchas

  • No OpenAPI spec — you write typed clients by hand or use a third-party generator on the docs HTML.
  • No official SDK detected. Plan on hitting the API directly with your HTTP client of choice.
  • Rate limits: always read the docs page before scaling — the published limit is usually lower than the practical one and overages can be expensive.
  • No-code fallback: Zapier and Make.com cover the common triggers if you want to skip writing API code for simple flows.
8/10

Agent-readiness verdict

Powerful but gated. Direct API access requires the Advanced plan ($455.67/mo annual); lower tiers are MCP-only. The unit-based model adds friction for high-volume code-driven workflows compared to peers like DataForSEO; SDK and webhook coverage was not advertised on the docs I checked.

Moderate agent fit: Semrush has an official MCP server and documented public API, which enables Claude workflows for SEO data retrieval. The main limitation is lack of OpenAPI spec and SDKs, requiring manual API integration rather than auto-generated tooling. Structured outputs and webhook support are also absent, constraining real-time automation potential.

MCP server availableOfficial MCP (on tool's own domain)Public API with docs

Semrush API FAQ

Does Semrush have a public API?+
Yes — REST API at developer.semrush.com/api.
Should I use the API or the MCP server for Claude / Cursor / Codex?+
Prefer the MCP server for agent workflows — it's less code and pre-handles auth flows. Use the REST API for scheduled jobs, dashboards, and anything outside an LLM-driven flow.

Sources

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

Semrush

Try Semrush
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.