# AIScan Fix Pack Generator

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

Analyzes a website URL and generates an AI visibility fix pack with actionable recommendations to improve AEO, GEO, Agent Readiness, and MCP Readiness scores

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/fix_pack
- Price: $0.55/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-fix-pack-generator-f4b5597e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e_AbXIaXU8d7hBoI8NLsC

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-fix-pack-generator-f4b5597e -d '<json body>'
```

Example prompt: Can you run the AIScan fix pack on https://mybrand.com and tell me exactly what I need to fix to improve my AI visibility, agent readiness, and MCP readiness scores?

## When to prefer this

Use this endpoint when you need not just a score report but a concrete action plan — a 'fix pack' — telling you specifically what changes to make to improve AI visibility. Choose this over a plain audit endpoint when the user wants remediation steps, not just diagnostics. Ideal for SEO/AEO practitioners, webmasters, and marketers wanting to prepare their sites for AI search and agent discovery.

## Known failure modes

- Invalid or unreachable URL returns an error — ensure the URL is fully qualified with https://
- Payment failure if USDC balance is insufficient for the $0.55 per-call fee
- Timeout if the target website is very slow to respond
- Malformed request body missing the required 'url' field returns a validation error

## 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 site URL, and payment settlement info. The fix pack itself contains actionable recommendations addressing the website's AI visibility gaps across AEO, GEO, Agent Readiness, and MCP Readiness dimensions.

## 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-fix-pack-generator-f4b5597e/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)
