# UUID Generator API

> UUID Generator API is a paid API for AI agents from uuid-generator.api.klymax402.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Generates unique identifiers in formats including UUIDv4, UUIDv7, ULID, and NanoID

## Facts

- Endpoint: GET https://uuid-generator.api.klymax402.com/api/generate
- 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/uuid-generator-api-klymax402-com-6602021f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xzs8Po32oA-1dQ6o-kkZb

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-generator-api-klymax402-com-6602021f
```

Example prompt: Generate 5 unique identifiers in UUIDv4 format for me.

## When to prefer this

Use this endpoint when your agent needs fresh, cryptographically random or time-ordered unique identifiers on demand without running local code. Particularly useful for generating UUIDv7 (time-sortable) or ULID identifiers that are not always available in standard libraries, or when you need a batch of up to 100 IDs in one call.

## Known failure modes

- count exceeds maximum of 100 — returns error
- invalid format value — returns error for unrecognized format string
- invalid length for NanoID — returns error if length is out of range
- payment failure — x402 payment required before IDs are returned

## How this service works

Generate unique identifiers

## Output

Returns one or more unique identifiers in the requested format (UUIDv4, UUIDv7, ULID, or NanoID). The response contains the generated IDs, count, and format used. NanoID supports a configurable length parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "number",
   "description": "Number to generate (default: 1, max: 100)"
  },
  "format": {
   "type": "string",
   "description": "Format: uuidv4, uuidv7, ulid, nanoid (default: uuidv4)"
  },
  "length": {
   "type": "number",
   "description": "Length for nanoid (default: 21)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uuid-generator-api-klymax402-com-6602021f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from uuid-generator.api.klymax402.com](https://www.zero.xyz/host/uuid-generator.api.klymax402.com/llms.txt)
