# Delx UUID Generate

> Delx UUID Generate is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Generates one to ten UUIDv4 identifiers in a single call for $0.001 USDC, no API key required.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/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/delx-uuid-generate-f043c61b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uuBuduvCk4TF53NERllSm

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 delx-uuid-generate-f043c61b -d '<json body>'
```

Example prompt: Can you generate 3 UUIDv4 identifiers for me right now — I need them for some new database records I'm creating?

## When to prefer this

Choose this endpoint when an agent needs one to ten fresh UUIDv4 values instantly without maintaining any API key or subscription. It is ideal for lightweight, pay-per-use workflows where setting up an SDK or account is impractical. Prefer it over local UUID libraries when the agent environment lacks native UUID generation support, or when auditability of payment-gated generation is desired.

## Known failure modes

- Count out of range (less than 1 or more than 10) — likely a 400 bad request
- Payment failure or insufficient USDC balance — transaction rejected before UUID generation
- Network timeout — no UUIDs returned
- Malformed request body — server returns validation error

## How this service works

UUID generator API for agents: generate one to ten UUIDv4 identifiers for $0.001 USDC with no API key or subscription.

## Output

Returns a list of one to ten UUIDv4 strings (e.g. '550e8400-e29b-41d4-a716-446655440000'), randomly generated and globally unique, suitable for use as database primary keys, correlation IDs, or any identifier that must not collide.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-uuid-generate-f043c61b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
