# Agent402 UK UUID Generator

> Agent402 UK UUID Generator is a paid API for AI agents from agent402.co.uk, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Generates a batch of 1–100 cryptographically random RFC-4122 UUID v4 values for use as correlation IDs, job keys, or idempotency tokens

## Facts

- Endpoint: GET https://agent402.co.uk/v1/utils/uuid
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-uk-uuid-generator-60443d73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_98jrYq59-50df-irY8lsD

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 agent402-uk-uuid-generator-60443d73
```

Example prompt: Generate 10 cryptographically random UUID v4 values I can use as idempotency tokens for my payment requests.

## When to prefer this

Prefer this endpoint when an AI agent needs trustworthy, cryptographically random RFC-4122 UUID v4 identifiers and must not invent or guess IDs itself. Use it over model-generated IDs (which are not truly random), sequential IDs, or ULID generators when strict RFC-4122 v4 compliance and cryptographic randomness are required. The batch capability (up to 100 per call) makes it efficient for fan-out workflows.

## Known failure modes

- count parameter out of range (not 1–100): returns error response
- count is not a valid integer string: returns validation error
- payment failure (x402 protocol): returns 402 Payment Required
- service unavailable: returns 5xx error

## How this service works

Don't burn tokens on deterministic work. Go/no-go jobs first: payout preflight, text firewall (PII/secrets), budget check — then rails, calendars, finmath. x402 USDC on Base. UK + global. agent402.co.uk — not agent402.tools. $0.001–$0.002 USDC on Base. No API keys.

## Output

Returns a JSON object containing the requested count, an array of RFC-4122 UUID v4 strings (up to 100), and a version field confirming 'v4'. Each UUID is cryptographically random and globally unique.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "count": {
       "type": "string",
       "description": "How many UUIDs (1-100)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "uuids": [
   "550e8400-e29b-41d4-a716-446655440000",
   "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
   "7c9e6679-7425-40de-944b-e07fc1f90ae7"
  ],
  "version": "v4"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-uk-uuid-generator-60443d73/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.co.uk](https://www.zero.xyz/host/agent402.co.uk/llms.txt)
