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 the full reference.

WebhooksMCP also availableLLMs: Claude (Desktop/Web), Claude Code, ChatGPT, Cursor, Codex, Windsurf, Cline, Gemini, n8n
Public REST API documentedAgent-readiness 7/10
Facts verified 2026-08-04

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
#Pull the latest data from Semrush
GET/v1/records?limit=10&sort=-created_at
200 OK · 10 records
Most recent entry2 min ago
Records this week147
API calls today1,832
Rate limit remaining8,168 / 10k
Schedule via cron, pipe results.
semrush-apirest
#Push a new record with custom metadata
POST/v1/records
201 Created · record_id: r_5a7
Validationpassed
Webhooks triggered2
Stored size1.2 KB
semrush-apirest
#Subscribe to webhook events
POST/v1/webhooks
201 Created · webhook_id: wh_3f
Signing secretwhsec_••••
Eventsrecord.created
Statusactive
TMB SCORE FOR SemrushAgent fit: 7/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.

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 fresh activity 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 via webhooks
  • 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.
  • Webhooks available — react to Semrush events in real time instead of polling.
  • 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 cover the common triggers if you want to skip writing API code for simple flows.
7/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.

Remote streamable HTTP only, no stdio. The previously stored value was the semrush.com/mcp/ marketing page.

Semrush API FAQ

Does Semrush have a public API?+
Yes — REST API at developer.semrush.com/api.
Does Semrush support webhooks?+
Yes — webhooks are available on standard plans.
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.