# minia2a UUID Generator

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

Generates a universally unique identifier (UUID) via a paid x402 HTTP endpoint

## Facts

- Endpoint: GET https://minia2a.uk/x402/uuid
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-uuid-generator-52f167ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jh1FUJ1E7aQ6fx1y2hMLb

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 minia2a-uuid-generator-52f167ca
```

Example prompt: Can you generate a fresh UUID for me to use as a unique key for a new database record?

## When to prefer this

Use this endpoint when you need a quick, remotely-generated UUID via an x402-compatible payment flow, particularly in agentic workflows where a local UUID library is unavailable or where you want a provably external source of uniqueness. Less appropriate if you can generate UUIDs locally at no cost.

## Known failure modes

- Payment failure if x402 micropayment of $0.1 USDC is not completed — returns 402 Payment Required
- Service unavailability resulting in 503 or timeout
- Malformed request parameters returning 400 Bad Request

## How this service works

minia2a service: x402-uuid

## Output

Returns a UUID string (a universally unique identifier, typically in standard 8-4-4-4-12 hyphenated format) that can be used as a unique key, token, or identifier in any application context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

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