# AIScan Visibility Fix Pack

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

Generates actionable AI visibility improvement recommendations for a brand based on previously identified weak spots in AEO, GEO, Agent Readiness, or MCP Readiness scores.

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/visibility_fix_pack
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-visibility-fix-pack-63759800
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X4_N_VzqUveKaHF81EmYf

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

Example prompt: My brand is Notion, a project management software, and a previous AIScan visibility check flagged weak spots in Agent Readiness and MCP Readiness — can you generate a fix pack with specific recommendations to address those gaps?

## When to prefer this

Use this endpoint after running an initial AIScan visibility_check that identified specific weak areas — this fix pack endpoint is the remediation step, designed to generate targeted improvement actions for those identified gaps. Prefer this over generic SEO or content advice when you specifically need AI-era visibility improvements (AEO, GEO, Agent Readiness, MCP Readiness).

## Known failure modes

- Missing required fields (brand, niche, or weak_spots) returns a 400 validation error
- Empty weak_spots array may return generic or empty recommendations
- Payment failure via x402 protocol returns 402 Payment Required
- Invalid or malformed input schema returns 422 Unprocessable Entity
- Service timeout if upstream AI analysis takes too long

## 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 which fix pack was executed, plus payment settlement info. The actual fix recommendations are delivered as part of the capability payload describing targeted improvements for the specified brand's weak AI visibility areas.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "brand",
  "niche",
  "weak_spots"
 ],
 "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\""
  },
  "weak_spots": {
   "type": "array",
   "description": "Weak areas from a prior visibility_check analysis"
  }
 }
}
```

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