# 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-15).

Generate batches of v4 (random) or v5 (name-based) UUIDs with optional uppercase and no-hyphen formatting.

## Facts

- Endpoint: POST https://api.24klabs.ai/api/uuid-generate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-uuid-generator-629fc683
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CgR34FAwcfDzuKhWKDkGB

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-629fc683 -d '<json body>'
```

Example prompt: Generate a batch of 10 random v4 UUIDs with no hyphens and in uppercase — I need them for seeding a database.

## When to prefer this

Choose this endpoint when you need to generate one or more UUIDs quickly with formatting control (uppercase, no hyphens), especially in batch. Prefer it over client-side UUID libraries when you need server-authoritative generation, consistent v5 determinism from a namespace, or when operating in an environment without native UUID support.

## Known failure modes

- Invalid UUID version specified (not v4 or v5)
- Missing namespace or name for v5 generation
- Batch count exceeds allowed maximum
- Malformed namespace UUID for v5
- Payment failure (x402 protocol, insufficient USDC balance)

## How this service works

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

## Output

An array of UUID strings in the requested version (v4 random or v5 name-based), formatted according to the uppercase and hyphen options provided. Each UUID conforms to the standard 8-4-4-4-12 structure unless hyphens are suppressed.

## 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-629fc683/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)
