# AIScan Visibility vs Competitor

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

Compares a brand's AI visibility against a named competitor within a specific market niche, measuring how often each is named by AI systems.

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/visibility_vs_competitor
- Price: $3.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-visibility-vs-competitor-3ffa6d09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PUZtBjqBhK8rbVAOJUItQ

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-visibility-vs-competitor-3ffa6d09 -d '<json body>'
```

Example prompt: How does Notion compare to Asana for AI visibility in the project management software niche — which brand does AI actually mention more often?

## When to prefer this

Use this endpoint when you need to directly compare two specific brands head-to-head for AI visibility in a defined niche, rather than auditing a single brand in isolation. Ideal for competitive intelligence workflows where a marketer wants to understand AI share-of-voice relative to a named rival.

## Known failure modes

- Missing required fields (brand, niche, or competitor_brand) returns a validation error
- Unknown or very niche brand names may return low-confidence or empty comparisons
- Payment failure via x402 protocol prevents execution
- Rate limiting or server errors return 5xx responses
- Misspelled brand names may not match AI knowledge and return null visibility scores

## 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 the capability identifier that was executed, the analyzed URL context, and payment settlement details. The core output reflects the comparative AI visibility analysis between the two specified brands in the given niche, indicating which brand has stronger presence in AI-generated responses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "brand",
  "niche",
  "competitor_brand"
 ],
 "properties": {
  "brand": {
   "type": "string",
   "description": "Brand name to measure, e.g. \"Notion\""
  },
  "niche": {
   "type": "string",
   "description": "Market niche or category, e.g. \"project management software\""
  },
  "competitor_brand": {
   "type": "string",
   "description": "Competitor brand name to compare against, e.g. \"Asana\""
  }
 }
}
```

## 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-visibility-vs-competitor-3ffa6d09/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)
