# AIScan Health Check

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

Checks the health/availability of the AIScan AI visibility auditing service before submitting a full website audit.

## Facts

- Endpoint: POST https://api.getaiscan.app/api/agent/check_health
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiscan-health-check-b39fb38d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d_KHgt_AtNIlbiO7u_S7p

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-health-check-b39fb38d -d '<json body>'
```

Example prompt: Can you check if the AIScan AI visibility service is up and running before I submit my site https://example.com for a full audit?

## When to prefer this

Use this endpoint as a pre-flight check before invoking a more expensive AIScan audit endpoint, or when you want to confirm the AIScan service is operational without committing to a full website analysis run.

## Known failure modes

- Service unavailable — AIScan backend is down, returns error or timeout
- Invalid URL format — URL field missing or malformed, returns 400-level error
- Payment failure — x402 micropayment of $0.06 USDC not settled, request rejected
- Network timeout — API gateway unreachable

## 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 confirming which AIScan capability was executed, the URL that was analyzed, and payment settlement information — essentially confirming the service is live and reachable.

## 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-health-check-b39fb38d/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)
