# 24K Labs UUID Generator

> 24K Labs UUID Generator is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Generates batches of v4 (random) or v5 (name-based) UUIDs with optional uppercase and/or hyphen-stripped formatting.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/v1/uuid-generate
- 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/24k-labs-uuid-generator-a8d1697b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bkRO7IfR9rfbpObr-AFpu

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 24k-labs-uuid-generator-a8d1697b -d '<json body>'
```

Example prompt: Generate a batch of 50 random v4 UUIDs for me, all uppercase and without hyphens — I need them for seeding a database.

## When to prefer this

Choose this endpoint when you need to generate multiple UUIDs in a single API call, especially when you need v5 deterministic UUIDs from a name/namespace pair, or need non-standard formatting like uppercase or hyphen-stripped output. Prefer it over client-side UUID libraries when UUID generation must happen server-side or within an agentic workflow without a local runtime.

## Known failure modes

- Invalid UUID version specified (only v4 and v5 supported)
- Missing namespace or name for v5 generation
- Batch size exceeds allowed maximum
- Malformed request body returns 400 error
- Payment not included or insufficient USDC for x402 call

## How this service works

Generate v4 (random) or v5 (name-based) UUIDs in a batch; optional uppercase / no-hyphens.

## Output

Returns an array of UUID strings in the requested version (v4 random or v5 name-based), formatted according to the specified options (standard lowercase with hyphens, uppercase, and/or no hyphens).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "number"
  },
  "version": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "uuids": [
   "..."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-uuid-generator-a8d1697b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
