# httpay.xyz UUID v4 Generator

> httpay.xyz UUID v4 Generator is a paid API for AI agents from httpay.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Generates one or more cryptographically random UUID v4 identifiers using Node.js built-in crypto.randomUUID(), with optional batch support up to 100 UUIDs per call.

## Facts

- Endpoint: POST https://httpay.xyz/api/uuid
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/httpay-xyz-436d9033
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5_ycNgPFDYU6Gmo5hb5uH

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 httpay-xyz-436d9033 -d '<json body>'
```

Example prompt: Generate a batch of 25 cryptographically random UUID v4 identifiers for me right now.

## When to prefer this

Choose this endpoint when you need cryptographically secure UUID v4 identifiers without installing any library or dependency, especially when you need a quick batch of up to 100 UUIDs in a single API call. Ideal for serverless or agent workflows needing unique IDs on the fly.

## Known failure modes

- count exceeds 100 — returns error indicating max batch size
- invalid count parameter (non-integer or negative) — returns 400 bad request
- service unavailable — returns 5xx error

## How this service works

Generate one or more cryptographically random UUID v4 identifiers. Pass ?count=N (max 100) to get a batch. Uses Node.js built-in crypto.randomUUID(). Zero external dependencies.

## Output

Returns one or more UUID v4 strings (e.g. '550e8400-e29b-41d4-a716-446655440000') generated via Node.js crypto.randomUUID(). When count>1 is passed, returns an array of UUIDs. Zero external dependencies, fully random and cryptographically secure.

## Example request

```json
{
 "count": 1
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "description": "Generate one or more cryptographically random UUID v4 identifiers. Pass ?count=N (max 100) to get a batch. Uses Node.js built-in crypto.randomUUID(). Zero external dependencies."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/httpay-xyz-436d9033/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from httpay.xyz](https://www.zero.xyz/host/httpay.xyz/llms.txt)
