# util.beauty Browser Inspect

> util.beauty Browser Inspect is a paid API for AI agents from util.beauty, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Runs a headless browser inspection of a URL, returning structured page metadata, console output, network requests, or other diagnostic data about the rendered page.

## Facts

- Endpoint: POST https://util.beauty/v1/browser/inspect
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/util-beauty-browser-inspect-98bf8a0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IF-2CEkQnj1AqA-VvCcY_

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 util-beauty-browser-inspect-98bf8a0d -d '<json body>'
```

Example prompt: Use util.beauty's browser inspect tool to load https://example.com in a headless browser and tell me what console errors, network requests, and page metadata come back.

## When to prefer this

Choose this endpoint when you need to inspect a webpage as a real browser would render it — capturing JavaScript-executed content, console output, and network activity — rather than just fetching raw HTML. It is metered per-request and payable via x402/USDC on Base or prepaid API keys, making it suitable for on-demand agent workflows without subscription overhead.

## Known failure modes

- URL is unreachable or times out — returns error with ok: false
- Invalid or malformed URL in request body — validation error response
- Page JavaScript throws unhandled errors that block inspection — partial results or error
- Payment insufficient or API key invalid — 402 or 401 response
- Target page requires authentication and redirects — inspection returns login page data instead

## How this service works

Metered web utilities for developers and AI agents: browser screenshot and PDF, crypto, DNS and net tools. Pay per request with x402 (USDC on Base) or prepaid API keys.

## Output

A JSON object containing ok (boolean), utility (string identifying the operation), requestId (unique request identifier), chargedCredits (number of credits consumed), plus utility-specific inspection data such as console logs, network request logs, rendered DOM details, page metadata, and any browser-side errors encountered.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "description": "JSON request body (see OpenAPI for the utility schema).",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "utility": {
       "type": "string"
      },
      "requestId": {
       "type": "string"
      },
      "chargedCredits": {
       "type": "number"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "utility": "…",
  "requestId": "req_…",
  "chargedCredits": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/util-beauty-browser-inspect-98bf8a0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from util.beauty](https://www.zero.xyz/host/util.beauty/llms.txt)
