# AIScan AI Visibility Scorer

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

Audits any website URL and returns AI visibility scores covering AEO, GEO, Agent Readiness, and MCP Readiness in about 60 seconds

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/score_agent
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-ai-visibility-scorer-86e100ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XrsfOPILS6yWH7mKte11b

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-ai-visibility-scorer-86e100ca -d '<json body>'
```

Example prompt: Can you run an AI visibility audit on https://example.com and give me all four scores — AEO, GEO, Agent Readiness, and MCP Readiness — so I know how well it shows up to AI tools?

## When to prefer this

Use this endpoint when you need a fast, comprehensive AI-era visibility audit of any public website, especially when MCP Readiness or Agent Readiness scoring is required — capabilities not available from traditional SEO tools. Best when you need all four AI visibility dimensions in a single call rather than running separate SEO audits.

## Known failure modes

- Invalid or unreachable URL returns an error or empty scores
- Payment not settled (x402) blocks the request
- Timeout if the target site is slow to respond
- Malformed URL input causes schema validation failure
- Site blocks crawlers, leading to incomplete audit results

## 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 string indicating the executed audit, the analyzed site URL, and payment settlement info. The core output captures the AI visibility scoring results for AEO (Answer Engine Optimization), GEO (Generative Engine Optimization), Agent Readiness, and MCP Readiness along with Brand Visibility indicating how often AI systems name the brand.

## Example request

```json
{
 "url": "https://example.com"
}
```

## Request schema (JSON Schema)

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

## 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-ai-visibility-scorer-86e100ca/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)
