# CONNSKILL Competitor SEO Analysis

> CONNSKILL Competitor SEO Analysis is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a ranked list of competing domains sharing organic keyword intersections with a target domain, including estimated traffic value and average SERP position.

## Facts

- Endpoint: POST https://agent.connskill.com/v1/competitors
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/connskill-competitor-seo-analysis-fd5aa288
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nBvGF3wTkEN9cRhXxhO6_

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 connskill-competitor-seo-analysis-fd5aa288 -d '<json body>'
```

Example prompt: Who are the top organic search competitors of shopify.com in the US (location code 2840, language en)? Give me up to 10 results ranked by keyword overlap.

## When to prefer this

Choose this endpoint when you need organic SEO competitor discovery for a specific domain, especially in a pay-per-call context with no account setup. It is ideal for agent workflows that need to identify rival domains based on shared keyword rankings and traffic estimates rather than backlink profiles or paid search overlap. Prefer this over full SERP scraping when you want structured competitor-level aggregates rather than raw keyword-level data.

## Known failure modes

- Target domain not found or has no indexed keywords — returns empty items array
- Invalid location_code or language_code — may return error or empty results
- Domain string malformed — likely 400-level error or empty response
- Payment failure via x402 — 402 response if USDC payment not completed
- Rate or limit exceeded — possible 429 or truncated results

## How this service works

Organic search competitors of a domain, with keyword overlap metrics

## Output

A JSON array of competitor objects, each containing the rival domain name, number of shared keyword intersections with the target, their average SERP position across those keywords, and an estimated traffic value (ETV) in USD. Also includes a top-level status field ('delivered') confirming successful retrieval.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "target"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "max 50, defaults to 20"
  },
  "target": {
   "type": "string",
   "description": "Domain, e.g. example.com. Also accepted as \"domain\" or \"url\"."
  },
  "language_code": {
   "type": "string",
   "description": "ISO language code, defaults to de"
  },
  "location_code": {
   "type": "number",
   "description": "Location code (2276 = Germany, 2840 = United States)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "Organic search competitors of a domain, with keyword overlap metrics"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/connskill-competitor-seo-analysis-fd5aa288/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
