# 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) on demand via a paid x402 API call

## Facts

- Endpoint: GET https://minia2a.uk/x402/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-37835252
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9a1ehRvOQ_G9v4NSJFB1_

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-37835252
```

Example prompt: Can you generate a fresh UUID for me using the minia2a x402 UUID service?

## When to prefer this

Prefer this endpoint when you need a UUID generated as part of an agentic workflow that already uses the x402 micropayment protocol, and want a simple on-demand UUID without running your own generation logic. Suitable for agents needing globally unique identifiers in a pay-per-use model.

## Known failure modes

- Payment failure or insufficient USDC balance returns a 402 error
- Malformed request parameters may result in a 400 bad request
- Service unavailability returns a 5xx error
- Network timeout if the endpoint is temporarily unreachable

## How this service works

minia2a service: x402-uuid

## Output

Returns a newly generated UUID string (e.g. in standard 8-4-4-4-12 hex format) suitable for use as a unique identifier in databases, sessions, or any context requiring global uniqueness.

## 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-37835252/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)
