# whatchuneed UUID Generator

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

Generates one or more UUIDs of a specified version on demand

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/uuid
- 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/whatchuneed-uuid-generator-4ce4c17f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W6RxB7hvZDhXw3KdoEgkB

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 whatchuneed-uuid-generator-4ce4c17f -d '<json body>'
```

Example prompt: Can you generate 5 version 4 UUIDs for me right now?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call UUID generation service without standing up your own infrastructure, especially within an agent workflow that already uses the whatchuneed API ecosystem. Useful when you need multiple UUIDs in one call or a specific UUID version.

## Known failure modes

- Invalid version number (only v1 and v4 are commonly supported) returns an error
- Count value of zero or negative integer may return empty array or error
- Exceeding maximum count limit may result in a rejected request
- Payment failure via x402 protocol prevents the call from completing

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a JSON object containing an array of generated UUID strings and the UUID version used. Each UUID conforms to the requested version specification.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "uuids": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "version": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-uuid-generator-4ce4c17f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
