# Powerboy856 x402 URL Audit

> Powerboy856 x402 URL Audit is a paid API for AI agents from powerboy856-x402-tools.cesarsr1420.chatgpt.site, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Fetches a given HTTPS URL and returns a deterministic audit report including HTTP status, page title, SHA-256 content hash, security headers, content type, and byte count.

## Facts

- Endpoint: POST https://powerboy856-x402-tools.cesarsr1420.chatgpt.site/api/url-audit
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/powerboy856-x402-url-audit-f721bf83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KQUrODqNMZkn7OYts_Wis

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 powerboy856-x402-url-audit-f721bf83 -d '<json body>'
```

Example prompt: Can you audit https://example.com/ and tell me its HTTP status, page title, SHA-256 hash, and whether it has Strict-Transport-Security enabled?

## When to prefer this

Use this endpoint when you need a lightweight, deterministic, single-URL audit that returns a bundle of HTTP diagnostics (status, title, hash, security headers, byte count, final URL) in one call. It is ideal for content integrity checks, security header verification, redirect tracing, and page fingerprinting without requiring a full browser rendering pipeline or a heavyweight scraping service.

## Known failure modes

- Non-HTTPS URLs are rejected by schema pattern validation
- URLs exceeding 2048 characters are rejected
- Unreachable or timed-out URLs may return ok: false or an error response
- Paywalled or bot-blocked pages may return partial or unexpected content
- Redirects to non-HTTPS final URLs may behave unexpectedly

## How this service works

Small, deterministic API tools paid per call with USDC on Base through x402.

## Output

A JSON object containing: ok (boolean), title (page title string), sha256 (hex digest of content), status (HTTP status code), finalUrl (URL after any redirects), bytesRead (integer), contentType (MIME type string), and securityHeaders (object with flags like strictTransportSecurity).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "pattern": "^https://",
   "maxLength": 2048
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "title": "Example Domain",
  "sha256": "hex digest",
  "status": 200,
  "finalUrl": "https://example.com/",
  "bytesRead": 1256,
  "contentType": "text/html",
  "securityHeaders": {
   "strictTransportSecurity": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/powerboy856-x402-url-audit-f721bf83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from powerboy856-x402-tools.cesarsr1420.chatgpt.site](https://www.zero.xyz/host/powerboy856-x402-tools.cesarsr1420.chatgpt.site/llms.txt)
