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

Seobility API

Yes. Seobility publishes a public REST API. See legacy.seobility.net/static/api/documentation.html for the full reference.

LLMs: Claude (Desktop/Web), Claude Code, ChatGPT, Cursor, Gemini, n8n
Public REST API documentedAgent-readiness 3/10
Facts verified 2026-06-07

What is the Seobility API?

Seobility's API surface is the narrowest in the SEO pilot. Two endpoints exist: the Ranking Monitoring API (restricted to Agency-plan customers, access via email request to api@seobility.net) and a deprecated legacy 'Dedicated SEO API' independent of regular Seobility accounts. Per Seobility's own description, the Ranking Monitoring API "does not include backlink data and only very limited onpage data", it's ranking positions and metadata only. No documented auth method, no published endpoint base URL, no rate limits surfaced, no official SDKs, no OpenAPI/Swagger spec, no webhooks. Compared to other SEO-tool APIs in the pilot (Ahrefs exposes 30+ endpoint categories, Moz exposes 17, Mangools exposes 4 capabilities), Seobility's API is intentionally minimal and clearly not a strategic priority for the vendor.

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

HOOK IT TO YOUR STACK

Real Seobility API calls you'll write

seobility-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.
seobility-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.
seobility-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 SeobilityAgent fit: 3/10
Read review →

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

What Seobility exposes

Seobility is the German-engineered technical SEO toolkit, built around four pillars: Website Audit (1,000-100,000 page crawls with duplicate content analysis and JavaScript crawling on Agency), Ranking Monitoring (daily desktop + mobile every 3 days, country and city-level localization, AI Overview tracking, Local Pack on Agency), Backlink Monitoring (broken backlinks, link-building tools, Premium and Agency only), and Uptime Monitoring (24/7 checks down to 1-minute intervals). The standalone Free Basic tier is usable without the feature limits most competitors impose on free tiers. API access is limited to the Ranking Monitoring data, Agency-tier only, and requires emailing api@seobility.net for access. The deprecated standalone 'Dedicated SEO API' still has legacy docs but is independent of regular Seobility accounts. For agent workflows, the API surface is the narrowest in the SEO category.

Pricing, limits, and integration

API access requires the Agency plan ($160/month annual or $200/month monthly = $1,920/year minimum) AND an approved email request to api@seobility.net. Premium and Basic plans get no API access at all. Pricing beyond plan inclusion isn't published; Seobility doesn't surface per-call rates, rate-limit headers, or volume pricing. The deprecated standalone 'Dedicated SEO API' has its own legacy pricing but is no longer actively sold. For agent workflows, the practical implication is steep: minimum cost of entry is $1,920/year, and you get ranking data only with no backlink coverage, very limited onpage data, and no first-party developer infrastructure. Teams that want API-first SEO data should look at Moz API ($20-$10K row-billed) or DataForSEO instead.

How much does the Seobility API actually cost?

Verify on docs

Seobility 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
not available
Structured outputs

Which AI clients can read Seobility data?

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

ClientSupportNotes
Claude (Desktop/Web)API-only (custom code)No MCP path of any kind. The Ranking Monitoring API is Agency-tier-only AND email-request gated, so even custom-code integration requires vendor approval.
Claude CodeAPI-only (custom code)No MCP path of any kind. The Ranking Monitoring API is Agency-tier-only AND email-request gated, so even custom-code integration requires vendor approval.
ChatGPTAPI-only (custom code)No MCP path of any kind. The Ranking Monitoring API is Agency-tier-only AND email-request gated, so even custom-code integration requires vendor approval.
CursorAPI-only (custom code)No MCP path of any kind. The Ranking Monitoring API is Agency-tier-only AND email-request gated, so even custom-code integration requires vendor approval.
CodexNot supportedCodex is MCP-native; no MCP server to connect.
WindsurfNot supported
ClineNot supported
GeminiAPI-only (custom code)No MCP path of any kind. The Ranking Monitoring API is Agency-tier-only AND email-request gated, so even custom-code integration requires vendor approval.
n8nAPI-only (custom code)HTTP Request node + API key.

What you can build with the Seobility API

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

SOLO DEV / FOUNDER

Glue Seobility 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 Seobility reporting at scale

  • White-label Seobility data into client-branded dashboards
  • Run scheduled multi-account reports without logging into the Seobility 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 Seobility

  • Real-time sync into your warehouse on a cron
  • Custom alerts the dashboard's built-in alerting can't express
  • Backfill + idempotency handling for Seobility 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 Seobility API docs: https://legacy.seobility.net/static/api/documentation.html

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

Template only. Endpoint paths, exact base URL, and auth header format come from legacy.seobility.net/static/api/documentation.html.

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.
3/10

Agent-readiness verdict

Score: 3/10 on API-readiness. Seobility's API exists but it's effectively gated behind two locked doors: the $1,920/year Agency plan AND vendor approval via email. Even after access, the scope is ranking-data-only with no backlinks and 'very limited' onpage data. There's no developer infrastructure (no SDKs, no OpenAPI spec, no published rate limits, no webhooks). For teams already on Agency with narrow ranking-data needs, the API is a useful adjunct. For anyone building an API-first SEO stack, look elsewhere, Mangools, Moz, and DataForSEO all expose more API value at lower friction.

Avoid for agent workflows. Seobility has public API documentation but no MCP server, OpenAPI spec, or SDKs to enable programmatic integration with Claude or similar tools. Without webhooks or structured outputs, automation remains manual and limited.

Seobility API FAQ

Does Seobility have a public API?+

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.

Seobility

Try Seobility
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.