# agent402.tools Competitor Scan

> agent402.tools Competitor Scan is a paid API for AI agents from agent402.tools, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Runs a bundled competitor intelligence scan — tech stack, HTTP headers, WHOIS, and page metadata — in a single x402-paid call against any URL.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/competitor-scan
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-competitor-scan-be1abf56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l8hbb3Fp2YXtb1yuZRqMP

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 agent402-tools-competitor-scan-be1abf56 -d '<json body>'
```

Example prompt: Can you do a full competitor scan on https://stripe.com — I want to see their tech stack, HTTP headers, WHOIS info, and page metadata all at once?

## When to prefer this

Use this endpoint when you need a comprehensive single-call competitor intelligence snapshot and want to avoid orchestrating four separate tool calls. It is ideal for quick competitive audits where breadth matters more than depth, and when you want consolidated results with partial-success tolerance across each sub-step. Prefer specialized single-tool endpoints if you only need one dimension (e.g., WHOIS only).

## Known failure modes

- Target URL is unreachable or returns non-2xx — partial results returned for other steps
- WHOIS data unavailable for certain TLDs or privacy-protected domains
- Tech stack detection may miss obfuscated or custom-built stacks
- Payment failure via x402 — call not executed
- Malformed URL input returns validation error

## How this service works

Bundled execution of the Competitor scan workflow - What's a competitor using? Tech stack, HTTP headers, WHOIS, and page metadata in one call. One x402 payment runs 4 underlying tools (tech-stack, http-headers, whois, meta); partial-success per step.

## Output

A combined report containing four sub-results: (1) tech stack detection (frameworks, CDN, analytics, CMS, etc.), (2) raw HTTP response headers, (3) WHOIS registration and ownership data, and (4) page-level metadata (title, description, Open Graph tags). Each step reports partial success or failure independently, so you get whatever data was retrievable even if one sub-tool fails.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Competitor URL (e.g. https://stripe.com)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "url": "https://stripe.com"
  },
  "pack": "competitor-scan",
  "steps": [
   {
    "ok": true,
    "slug": "tech-stack",
    "result": {}
   },
   {
    "ok": true,
    "slug": "http-headers",
    "result": {}
   },
   {
    "ok": true,
    "slug": "whois",
    "result": {}
   },
   {
    "ok": true,
    "slug": "meta",
    "result": {}
   }
  ],
  "summary": "4/4 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-competitor-scan-be1abf56/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
