# AveDaris Website Health Report

> AveDaris Website Health Report is a paid API for AI agents from api.avedaris.com, paid per call via x402, $0.009/call, status unknown (last checked 2026-09-15).

Checks a website URL for reachability, DNS resolution, robots.txt availability, and metadata accessibility, returning a structured health report.

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/website-health-report
- Price: $0.009/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-website-health-report-f2ddf4e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VPYBDwvC59AJWup5y3wrR

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 avedaris-website-health-report-f2ddf4e0 -d '<json body>'
```

Example prompt: Can you run a website health check on https://example.com and tell me if it's reachable, whether DNS resolves, and whether it has a robots.txt and metadata available?

## When to prefer this

Use this endpoint when you need a quick, structured, multi-signal health check on a specific URL covering DNS, HTTP reachability, robots.txt, and metadata in a single call. Prefer it over raw HTTP probes when you need a clean JSON report with boolean flags for downstream automation. Ideal for pre-crawl validation, site monitoring pipelines, or vendor site audits.

## Known failure modes

- Invalid or malformed URL returns an error
- URL is unreachable — reachable flag set to false
- DNS does not resolve — dnsResolved flag set to false
- robots.txt not found — robotsAvailable flag set to false
- Metadata not found — metadataAvailable flag set to false
- Network timeout for the target domain
- Payment failure or insufficient USDC balance prevents the call

## How this service works

AveDaris is the economic coordination layer for autonomous software: discover, route, evaluate, procure, verify, and learn across agent services.

## Output

A JSON object containing a structured health report for the given URL, including boolean flags for reachability, DNS resolution, robots.txt availability, and metadata availability, plus raw evidence objects for DNS, HTTP, robots, and metadata checks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "maxLength": 8192,
   "minLength": 8,
   "description": "Public HTTP(S) website URL to inspect across four checks—DNS, HTTP/redirects, robots.txt, and page metadata—in one paid request."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "url": "https://example.com/",
   "summary": {
    "reachable": true,
    "dnsResolved": true,
    "robotsAvailable": true,
    "metadataAvailable": true
   },
   "evidence": {
    "dns": {},
    "http": {},
    "robots": {},
    "metadata": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-website-health-report-f2ddf4e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.avedaris.com](https://www.zero.xyz/host/api.avedaris.com/llms.txt)
