# util.beauty System API Key Management

> util.beauty System API Key Management is a paid API for AI agents from util.beauty, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Creates or manages prepaid API keys for accessing util.beauty metered web utilities (screenshot, PDF, crypto, DNS, net tools)

## Facts

- Endpoint: POST https://util.beauty/v1/system/keys
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/util-beauty-system-api-key-management-4fa632e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xg5KKaQ_b6IsO5xlL1ZWj

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-system-api-key-management-4fa632e3 -d '<json body>'
```

Example prompt: Create a new prepaid API key on util.beauty so I can start using their screenshot and DNS tools without having to pay per-request each time.

## When to prefer this

Use this endpoint when you want to switch from per-request x402 USDC micropayments to a prepaid API key model for accessing util.beauty utilities. Prefer this over direct per-request payment when making multiple calls in a short period, running automated agents, or when you want predictable billing without on-chain transactions per call.

## Known failure modes

- Invalid or missing request body fields — returns ok: false with error detail
- Insufficient USDC balance or failed x402 payment — returns payment required or authorization error
- Duplicate key creation attempt — may return conflict or existing key reference
- Rate limiting on key provisioning — returns 429 or equivalent error
- Malformed JSON body — returns 400 bad request

## 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

Returns a JSON object containing ok (boolean success flag), utility name, a unique requestId (e.g. req_…), and chargedCredits indicating how many credits were consumed for the key creation operation.

## 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-system-api-key-management-4fa632e3/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)
