# PitchPilot UUID Generator

> PitchPilot UUID Generator is a paid API for AI agents from pitchpilot-outreach-api.pitchpilot-agents.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Generates one or more unique IDs (UUID v4, UUID v7, ULID, or NanoID) on demand, paid per call via USDC.

## Facts

- Endpoint: GET https://pitchpilot-outreach-api.pitchpilot-agents.workers.dev/tools/uuid
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pitchpilot-uuid-generator-49fbc37a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zP8cLizhgH7NyIYTlbhyR

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 pitchpilot-uuid-generator-49fbc37a
```

Example prompt: Generate 5 UUID v7s for me so I can assign them to new database rows I'm about to insert.

## When to prefer this

Choose this endpoint when you need on-demand unique ID generation without running a local library — especially useful for serverless agents, sandboxed environments, or when you need time-ordered ULIDs or UUIDs in bulk with a single paid call.

## Known failure modes

- count out of range (must be 1-100): returns validation error
- invalid version enum value: returns bad request
- payment not sent or insufficient USDC balance: returns 402 Payment Required
- service unavailable on Cloudflare Workers edge: returns 5xx

## How this service works

Paid micro-utilities for cold-email outreach agents: domain deliverability audits, cold-email grading, template generation, plus a tools toolbox (hashing, JWT decode, IDs, slugs, JSON, regex, crypto prices, domain age, weather). Paid via x402 (USDC on Base).

## Output

A JSON object containing an array of generated unique IDs in the requested format (v4, v7, ulid, or nanoid), the count of IDs returned, and the version/format label used.

## 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",
       "maximum": 100,
       "minimum": 1,
       "description": "How many IDs"
      },
      "version": {
       "enum": [
        "v4",
        "v7",
        "ulid",
        "nanoid"
       ],
       "type": "string",
       "description": "ID format"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ids"
     ],
     "properties": {
      "ids": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "count": {
       "type": "number"
      },
      "version": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ids": [
   "01934fe8-1a2b-7c3d-8e4f-5a6b7c8d9e0f",
   "01934fe8-1a2b-7c3d-8e4f-5a6b7c8d9e10"
  ],
  "count": 2,
  "version": "v7"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pitchpilot-uuid-generator-49fbc37a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pitchpilot-outreach-api.pitchpilot-agents.workers.dev](https://www.zero.xyz/host/pitchpilot-outreach-api.pitchpilot-agents.workers.dev/llms.txt)
