# AIScan Competitor AI Visibility Comparison

> AIScan Competitor AI Visibility Comparison is a paid API for AI agents from api.getaiscan.app, paid per call via x402, $0.8/call, status unknown (last checked 2026-09-14).

Compares two websites head-to-head on AI visibility scores including AEO, GEO, Agent Readiness, and MCP Readiness

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/compare
- Price: $0.8/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-competitor-ai-visibility-comparison-b080e711
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kGX-YcOYEdi1YaA3n18Zq

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 aiscan-competitor-ai-visibility-comparison-b080e711 -d '<json body>'
```

Example prompt: Compare my site https://mycompany.com against my competitor https://rivalcompany.com on AI visibility — I want to see which one scores better on AEO, GEO, Agent Readiness, and MCP Readiness.

## When to prefer this

Use this endpoint when you need a direct head-to-head AI visibility comparison between two specific websites, particularly when MCP Readiness scoring is important. Prefer this over single-site audit endpoints when competitive benchmarking is the goal.

## Known failure modes

- Invalid or unreachable URL returns an error
- Missing required 'url' or 'competitor' field causes validation failure
- Payment of 0.8 USDC not settled via x402 results in 402 Payment Required
- Competitor site blocks crawling or is behind authentication
- Timeout if either website is very slow to load

## How this service works

AIScan audits any website for AI visibility in 60 seconds. 4 scores: AEO, GEO, Agent Readiness, MCP Readiness. Plus Brand Visibility: how often AI actually names your brand. The only scanner with MCP Readiness.

## Output

Returns a capability identifier confirming the comparison was executed, along with the analyzed site URL and payment settlement info. The comparison covers AI visibility scoring across AEO, GEO, Agent Readiness, and MCP Readiness dimensions for both websites.

## Example request

```json
{
 "url": "https://www.example.com",
 "competitor": "https://www.example.org"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url",
  "competitor"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Full URL of the website to analyze, e.g. https://example.com"
  },
  "competitor": {
   "type": "string",
   "description": "Full URL of the competitor website to compare against"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "capability"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Analyzed site URL"
  },
  "payment": {
   "type": "object",
   "description": "Payment settlement info"
  },
  "capability": {
   "type": "string",
   "description": "Capability that was executed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aiscan-competitor-ai-visibility-comparison-b080e711/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getaiscan.app](https://www.zero.xyz/host/api.getaiscan.app/llms.txt)
