# AIScan GEO Score

> AIScan GEO Score 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).

Analyzes a website URL and returns its Generative Engine Optimization (GEO) score, measuring how well the site is optimized for AI-generated search results and visibility in LLM-powered search engines.

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/score_geo
- 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-geo-score-60cd181f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LckbMkT4qJCaUqCenVrKZ

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-geo-score-60cd181f -d '<json body>'
```

Example prompt: Can you run an AIScan GEO score audit on https://mybrand.com so I can see how well it's optimized for AI-powered search engines like Perplexity and ChatGPT?

## When to prefer this

Use this endpoint when you specifically need to evaluate a website's Generative Engine Optimization (GEO) score — i.e., how well the site is positioned to appear in AI-generated search results from tools like ChatGPT, Perplexity, or Google SGE. Choose this over general SEO tools when the focus is on AI/LLM-based discoverability rather than traditional search ranking signals.

## Known failure modes

- Invalid or unreachable URL returns an error
- Malformed URL (missing https://) may cause a validation failure
- Website behind authentication or firewall may not be analyzable
- Payment not settled results in 402 response before execution
- Timeout if the target website is extremely slow to respond

## 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 that was executed along with the analyzed site URL and payment settlement information. The GEO score reflects how well the website is structured and optimized to appear in AI-generated search engine results and LLM-powered answers.

## 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-geo-score-60cd181f/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)
