# MakeMoneyBot UUID Generator

> MakeMoneyBot UUID Generator is a paid API for AI agents from x402-api-rvva2a.openpouch.sh, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Generates one or more RFC 4122 UUIDs on demand, paid via x402 micropayment on Base.

## Facts

- Endpoint: GET https://x402-api-rvva2a.openpouch.sh/v1/uuid
- 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/makemoneybot-uuid-generator-22bc7dfd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jFeBj_c20zKrzIhf2qqQT

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 makemoneybot-uuid-generator-22bc7dfd
```

Example prompt: Generate 3 fresh UUIDs for me right now — I need them to use as database record IDs.

## When to prefer this

Use this endpoint when you need one or more cryptographically random RFC 4122 UUIDs instantly and are operating in an x402/Base micropayment environment. Prefer it over client-side UUID generation when you need server-minted, verifiably fresh identifiers without setting up your own UUID service.

## Known failure modes

- count out of range (must be 1-20) returns an error
- payment not included or insufficient causes 402 Payment Required
- invalid query parameter type returns a validation error
- service unavailable returns 5xx

## How this service works

x402-paid Demand Radar + money briefs + hash. Free: /v1/sample-brief, /v1/demand-radar-sample. Demand Radar GET/POST /v1/demand-radar ≥$0.25 USDC. Pack ≥$1 USDC on Base.

## Output

A JSON object containing the requested count and an array of one or more RFC 4122 UUID strings (e.g. {"count":1,"uuids":["550e8400-e29b-41d4-a716-446655440000"]}).

## 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": "integer",
       "description": "How many UUIDs to mint (1-20, default 1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "uuids": [
   "550e8400-e29b-41d4-a716-446655440000"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/makemoneybot-uuid-generator-22bc7dfd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-rvva2a.openpouch.sh](https://www.zero.xyz/host/x402-api-rvva2a.openpouch.sh/llms.txt)
