# SEO Domain Overview

> SEO Domain Overview is a paid API for AI agents from seo.openverbs.com, paid per call via x402, $0.04/call, status healthy (last checked 2026-09-15, last successful call 2026-09-14).

Estimates a domain's Google SEO footprint including organic/paid keyword counts, estimated traffic value, and keyword ranking distribution across top 3/10/100 positions.

## Facts

- Endpoint: POST https://seo.openverbs.com/v1/domain-overview
- Price: $0.04/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-14
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 14
- Tags: x402
- Canonical page: https://www.zero.xyz/c/seo-domain-overview-f7471f58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LmzHCFB_37w4nnTv9Do67

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability seo-domain-overview-f7471f58 -d '<json body>'
```

Example prompt: Can you give me a quick SEO overview of hubspot.com — how many keywords they rank for on Google, their estimated monthly traffic, what that traffic is worth, and how many keywords land in the top 10?

## When to prefer this

Use this endpoint when you need a fast, high-level SEO snapshot of a domain — keyword volume, traffic estimates, and ranking tier distribution — without needing the full keyword-by-keyword breakdown. Ideal for competitive benchmarking, acquisition due diligence, or quick audits where aggregate metrics are sufficient. Choose sibling endpoints when you need granular keyword lists, backlink profiles, or keyword difficulty scores.

## Known failure modes

- Unknown or very new domain returns found=false with no metrics
- Invalid domain format (with scheme or path) may cause validation error
- Unsupported language/location code combination may return empty results
- Rate limiting or payment failure returns 402 or error response

## How this service works

Estimate a domain's Google SEO footprint: total organic and paid keywords, estimated traffic (ETV), estimated traffic cost, and how many keywords rank in the top 3, top 10 and top 100. For quick domain SEO audits. Unknown domain returns found=false.

## Output

Returns whether the domain was found, plus its total organic keyword count, paid keyword count, estimated traffic volume (ETV), estimated traffic cost in USD, and keyword counts ranking in Google top 3, top 10, and top 100 positions. Returns found=false for unknown domains.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "target": {
       "type": "string",
       "minLength": 3,
       "maxLength": 253,
       "description": "Bare domain, e.g. stripe.com (scheme, www and path are stripped)."
      },
      "locationCode": {
       "type": "integer",
       "description": "DataForSEO location code. Defaults to 2840 (United States)."
      },
      "languageCode": {
       "type": "string",
       "pattern": "^[A-Za-z]{2}$",
       "description": "Language code (2-letter). Defaults to en."
      }
     },
     "required": [
      "target"
     ],
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/seo-domain-overview-f7471f58/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.openverbs.com](https://www.zero.xyz/host/seo.openverbs.com/llms.txt)
