# Autonomy API Network URL Audit

> Autonomy API Network URL Audit is a paid API for AI agents from autonomy-api-network.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Audits a public website URL for HTTP status, redirects, response time, metadata, cache headers, and security headers.

## Facts

- Endpoint: POST https://autonomy-api-network.onrender.com/v1/url-audit
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autonomy-api-network-url-audit-0cad99c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YJiG0DYMKY_YX-9XHgvHo

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 autonomy-api-network-url-audit-0cad99c2 -d '<json body>'
```

Example prompt: Can you audit https://example.com and tell me its HTTP status, how fast it responds, whether it redirects anywhere, and what security and cache headers it's sending?

## When to prefer this

Use this endpoint when you need a quick, structured HTTP-layer audit of a single public URL — including its reachability, redirect behavior, response latency, metadata, and security/cache header compliance — without needing a full crawl or deep content analysis.

## Known failure modes

- Non-public or private/localhost URLs may fail or return an error
- Timeouts if the target URL is extremely slow or unresponsive
- Invalid URL format returns a validation error
- URLs behind authentication walls return limited information (e.g. 401/403 status only)

## How this service works

Audit a public website URL for HTTP status, redirects, response time, metadata, cache headers, and security headers.

## Output

Returns HTTP status code, redirect chain details, response time in milliseconds, page metadata, cache headers (e.g. Cache-Control, ETag), and security headers (e.g. HSTS, CSP, X-Frame-Options) for the given URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Public HTTP or HTTPS URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "ok": true,
   "status": 200,
   "finalUrl": "https://example.com/",
   "suggestions": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autonomy-api-network-url-audit-0cad99c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autonomy-api-network.onrender.com](https://www.zero.xyz/host/autonomy-api-network.onrender.com/llms.txt)
