# AgentBIT UUID Generator

> AgentBIT UUID Generator is a paid API for AI agents from agentbit.app, paid per call via x402, $0.0015/call, status unknown (last checked 2026-09-13).

Generates a random RFC 4122 version 4 UUID via a pay-per-call API with no signup or API keys required.

## Facts

- Endpoint: POST https://agentbit.app/v1/uuid/generate
- Price: $0.0015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-uuid-generator-13693c88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x7e18zrGlL78mcrtv4McS

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 agentbit-uuid-generator-13693c88 -d '<json body>'
```

Example prompt: Generate a fresh RFC 4122 version 4 UUID I can use as an idempotency key for my next request.

## When to prefer this

Choose this endpoint when your agent needs a UUID on-demand without setting up any SDK, API key, or library dependency — ideal for serverless or stateless agents operating in the x402 pay-per-call ecosystem where pulling in a local UUID library is impractical or undesirable.

## Known failure modes

- Payment failure or insufficient USDC balance results in a 402 response blocking the call
- Malformed request body returns a 4xx validation error
- Service unavailability returns a 5xx error; these are typically retryable

## How this service works

Live web, business, finance and security tools for AI agents. Pay per call with x402 — no signup, no API keys.

## Output

Returns a randomly generated RFC 4122 version 4 UUID string, suitable for use as a unique identifier in databases, idempotency keys, request tracing, and deduplication contexts.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {},
     "description": "UUID Generate input. Generate a random RFC 4122 version 4 UUID. Unique identifiers for records, requests and idempotency keys."
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "errors": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "status",
     "code"
    ],
    "properties": {
     "code": {
      "type": "string"
     },
     "status": {
      "type": "integer"
     },
     "retryable": {
      "type": "boolean"
     },
     "description": {
      "type": "string"
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "pricing": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "amount": {
     "type": [
      "number",
      "null"
     ]
    },
    "currency": {
     "type": "string"
    },
    "maxAmount": {
     "type": "number"
    },
    "quoteHint": {
     "type": "string"
    },
    "firstCallFree": {
     "type": "boolean"
    },
    "volumeDiscounts": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "minCalls30d",
       "percent"
      ],
      "properties": {
       "percent": {
        "type": "number"
       },
       "minCalls30d": {
        "type": "integer"
       }
      }
     }
    }
   }
  },
  "networks": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "provider": {
   "type": "object",
   "required": [
    "name",
    "category"
   ],
   "properties": {
    "name": {
     "type": "strin
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

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