What Moz Pro exposes
Moz operates five distinct product surfaces under the Moz Data umbrella: Moz Pro (the SEO suite), Moz Local (local SEO listings and reviews), STAT (enterprise SERP analytics, demo-only from $360/mo for 3,000 keywords), Moz API (first-party row-billed access to 17 endpoints), and Moz Data (custom bespoke pipelines for AI model training). The underlying index spans 45.5 trillion links, 8.7 trillion URLs, 1 billion domains, 800M+ keyword suggestions, and 1.25 billion monthly keyword volumes. Domain Authority is the proprietary metric most teams know Moz for, but the deeper bet for AI-stack use cases is the Moz API: a free tier of 50 rows/month is enough to wire up exploratory agents before committing to a paid plan.
Pricing, limits, and integration
Moz API uses row-volume billing with overages, which makes cost forecasting straightforward for agent workloads. The free tier is 50 rows/mo with hard rate-limiting (1 request per 10 seconds). Starter is $20/mo for 3,000 rows or $75/mo for 15,000 rows (the larger Starter adds overages at $5 per 1,000 rows). Growth is the most popular tier: $125 for 50K rows, $250 for 120K rows, or $500 for 500K rows, with overages at $25/$20/$10 per 10K rows respectively, plus Beta access for testing new endpoints. Advanced is $2,000/mo for 4M rows with $5/10K overage. Enterprise is $10,000/mo for 40M rows with $3.50/10K overage. Two endpoints are 'weighted' (URL Metrics and Link Intersect cost more rows per call than other endpoints). The default rate limit is generous enough for most agent jobs; tier-specific request-per-second caps aren't published by Moz, so plan for graceful retry on HTTP 429 if you push hard. No authentication beyond an API key, no OAuth or webhook delivery is documented.
How much does the Moz Pro API actually cost?
Moz Pro 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.
Moz Pro API is sold as a standalone product with its own pricing — not bundled into a parent SaaS subscription. See the pricing details below and confirm current rates on the official API page.
API at a glance
Which AI clients can read Moz Pro data?
Not every AI assistant supports MCP natively. Here's the per-client picture for Moz Pro specifically.
| Client | Support | Notes |
|---|---|---|
| Claude (Desktop/Web) | Third-party bridge | Via Composio broker. Requires Composio account plus the tool's API key. |
| Claude Code | Third-party bridge | Same Composio bridge as Claude Desktop. |
| ChatGPT | Third-party bridge | Via Composio MCP gateway. |
| Cursor | Third-party bridge | Via Composio bridge. |
| Codex | Not supported | No documented path through the third-party broker. |
| Windsurf | Not supported | — |
| Cline | Not supported | — |
| Gemini | API-only (custom code) | No MCP path; call the API directly from custom code. |
| n8n | API-only (custom code) | No first-party node; HTTP Request only. |
What you can build with the Moz Pro API
Three personas, three different shapes of build. Pick the row that matches how you actually ship.
Glue Moz Pro 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
Sell Moz Pro reporting at scale
- White-label Moz Pro data into client-branded dashboards
- Run scheduled multi-account reports without logging into the Moz Pro UI
- Cross-reference with the rest of the client's stack (CRM, analytics, ad spend)
Production pipelines for Moz Pro
- Real-time sync into your warehouse on a cron
- Custom alerts the dashboard's built-in alerting can't express
- Backfill + idempotency handling for Moz Pro data older than the dashboard exposes
Quickstart template
# Starter template — endpoint paths and SDK package names come from # the Moz Pro API docs: https://moz.com/products/api curl -X GET "https://moz.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 moz.com/products/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 cover the common triggers if you want to skip writing API code for simple flows.
Agent-readiness verdict
Score: 8/10 on API-readiness. Moz API is one of the cleaner SEO APIs to integrate against: predictable row-based pricing, a real free tier for prototyping, 17 endpoints covering the metrics teams actually use, and a generous index behind it. The gaps are the absence of first-party SDKs and the missing official MCP server. For an AI-stack build that needs Domain Authority, link metrics, or keyword data on a schedule, Moz API is a credible pick. For real-time agent workflows where MCP is the better fit, you're routing through Composio.
Skip for agent workflows. Moz Pro has documented public API access, but lacks MCP support, OpenAPI specs, and any SDK implementations that would let Claude or Cursor interact with it meaningfully. The missing webhook and structured-output support means you'd need extensive custom integration work to pipe SEO data into agentic systems.
Moz Pro API FAQ
Does Moz Pro have a public API?+
Sources
- Moz Pro official site: https://moz.com/
- API docs: https://moz.com/products/api
- Pricing source: https://moz.com/products/pro/pricing (verified 2026-05-24)
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.

