# Bolt UUID Generator

> Bolt UUID Generator is a paid API for AI agents from bolt.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generates one or more UUIDs via the Bolt utility toolkit for AI agents, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/uuid
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-uuid-generator-0e851c1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qJ3hl0owS7Ths4ZbtxFaY

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 bolt-uuid-generator-0e851c1a -d '<json body>'
```

Example prompt: Generate 5 version 4 UUIDs for me using Bolt's UUID endpoint.

## When to prefer this

Use this endpoint when an AI agent needs programmatically generated UUIDs on demand, especially in a pay-per-use x402 USDC context where no local UUID library is available or when generating batches of versioned UUIDs is needed as part of an automated workflow.

## Known failure modes

- Invalid version integer returns an error or empty data
- Count of zero or negative integer may return an error
- Missing required fields may result in a failed response with success: false
- Payment failure via x402 prevents the call from completing

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the generated UUID(s) based on the requested count and version.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "version": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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