# UUID v4 Generator

> UUID v4 Generator is a paid API for AI agents from x402render-u5vwpxpyua-uc.a.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates one or more RFC-4122 version 4 (random) UUIDs in a single API call

## Facts

- Endpoint: POST https://x402render-u5vwpxpyua-uc.a.run.app/uuid-v4
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uuid-v4-generator-ea8b679f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jPq5f1QorcDElDa6Dnpp9

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 uuid-v4-generator-ea8b679f -d '<json body>'
```

Example prompt: Generate 5 random UUID v4 identifiers for me so I can use them as unique keys for new database records.

## When to prefer this

Choose this endpoint when you need one or more RFC-4122 v4 UUIDs generated server-side without running local code, especially in an agentic workflow where you need random unique identifiers on demand. It supports batch generation (up to 100 at once), making it efficient compared to calling a UUID endpoint repeatedly.

## Known failure modes

- Count exceeds 100 — API may return an error or clamp to max
- Count is 0 or negative — likely returns an error or empty array
- Non-numeric count string — may return a 400 bad request
- Payment failure via x402 — returns 402 Payment Required before processing

## How this service works

Generate one or more RFC-4122 v4 UUIDs

## Output

Returns an array of one or more RFC-4122 version 4 (randomly generated) UUID strings, e.g. ['550e8400-e29b-41d4-a716-446655440000', ...]. The count matches the requested number (up to 100).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "number",
   "description": "number (optional, max 100)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uuid-v4-generator-ea8b679f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402render-u5vwpxpyua-uc.a.run.app](https://www.zero.xyz/host/x402render-u5vwpxpyua-uc.a.run.app/llms.txt)
