# Batch Random ID Generator (UUIDv4, UUIDv7, ULID, NanoID)

> Batch Random ID Generator (UUIDv4, UUIDv7, ULID, NanoID) is a paid API for AI agents from sigtap-outreach-api.sigtap.workers.dev, paid per call via x402, $0.0005/call, status unknown (last checked 2026-09-15).

Generates a batch of random unique identifiers in your choice of format: UUIDv4, UUIDv7, ULID, or nanoid

## Facts

- Endpoint: GET https://sigtap-outreach-api.sigtap.workers.dev/tools/uuid
- Price: $0.0005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/batch-random-id-generator-uuidv4-uuidv7-ulid-nanoid-de6ed2d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UAoivPBSs3cc5dHfVq01w

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 batch-random-id-generator-uuidv4-uuidv7-ulid-nanoid-de6ed2d5
```

Example prompt: Can you generate a batch of UUIDv7 IDs for me? I need about 10 of them for new database rows I'm inserting.

## When to prefer this

Use this endpoint when you need to generate multiple unique identifiers in bulk with a specific format (UUIDv4, UUIDv7, ULID, or nanoid) in a single API call. Prefer UUIDv7 or ULID when you need time-ordered sortable IDs for databases or event systems. Prefer nanoid for short URL-safe identifiers. This is especially useful for seeding databases, generating test data, or provisioning IDs for distributed systems before inserting records.

## Known failure modes

- Invalid or unsupported ID type requested — returns error
- Missing required parameters — returns 400-level error
- Network/worker timeout on the Cloudflare 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). One signature per call. No keys. FREE CHECK: GET /preview/<paid-path> (same URL with /preview/ prefix) returns a 200 demo sample - verify output shape before paying. PAID CALL: GET the url -> 402 challenge -> sign + retry with X-PAYMENT -> settled on-chain (USDC, Base). Ready-to-paste client: GET /llms.txt section "Pay in one call". Catalog+MCP twin: /llms.txt.

## Output

Returns a JSON object containing an array of generated unique IDs (field: 'ids'), the count of IDs generated, and the ID version/format used (e.g. 'v7', 'ulid', 'nanoid').

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```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/batch-random-id-generator-uuidv4-uuidv7-ulid-nanoid-de6ed2d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sigtap-outreach-api.sigtap.workers.dev](https://www.zero.xyz/host/sigtap-outreach-api.sigtap.workers.dev/llms.txt)
