# CONNSKILL SERP Report

> CONNSKILL SERP Report is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns ranked search engine results page (SERP) data for a given keyword, including URLs, titles, descriptions, and total result counts.

## Facts

- Endpoint: POST https://agent.connskill.com/v1/serp-report
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/connskill-serp-report-a05d2d71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WHUCH8DJ0SUh5vgpxcAvt

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-serp-report-a05d2d71 -d '<json body>'
```

Example prompt: Pull the top Google search results for the keyword 'beste Kaffeemaschine' in Germany — I need the ranked URLs, titles, and descriptions so I can see who's competing for that term.

## When to prefer this

Choose this endpoint when you need structured, ranked SERP data (URLs, titles, snippets, result counts) for a specific keyword, especially with location and language targeting, and want pay-per-call pricing with no API key or account setup. Prefer this over general web-search tools when you need clean, machine-readable SERP rows with rank positions rather than a single synthesized answer.

## Known failure modes

- Missing required 'keyword' field returns a validation error
- Invalid location_code returns no results or an error from the upstream DataForSEO provider
- Unsupported language_code may return results in unexpected language or an error
- Insufficient USDC balance on Base causes x402 payment failure before the request is processed
- Upstream DataForSEO outage may result in delayed or empty responses

## How this service works

SERP/Keyword-Reports (Google, organic) als JSON + Markdown. Tiers: basic Top-20 ($0.03), deep Top-100 ($0.50).

## Output

Returns a report object containing an array of ranked search results — each with URL, rank position, page title, and description snippet — along with the queried keyword, total result count, delivery status, and the cost in USD for the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "keyword"
 ],
 "properties": {
  "keyword": {
   "type": "string",
   "description": "Search keyword"
  },
  "language_code": {
   "type": "string",
   "description": "ISO language code, default de"
  },
  "location_code": {
   "type": "number",
   "description": "DataForSEO location (2276 = Germany)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "report": {
   "type": "object",
   "description": "SERP-Report (SERP Basic (Top-20)) mit items[] (rank,title,url,description)"
  },
  "status": {
   "type": "string"
  },
  "costUsd": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/connskill-serp-report-a05d2d71/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)
