# Delx Seeded UUID Generator

> Delx Seeded UUID Generator 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-14).

Generates a deterministic UUID v5-style value from a name, seed, and namespace, returning the same UUID every time the same inputs are supplied.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/seeded-uuid
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-seeded-uuid-generator-ca117eb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bgLyEAWsr5Rtr0uF4PhCr

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-seeded-uuid-generator-ca117eb1 -d '<json body>'
```

Example prompt: Generate a deterministic UUID using the name 'invoice-2024', seed 'acme-corp', and namespace 'billing' — I need the same UUID every time I pass those exact values.

## When to prefer this

Choose this endpoint when you need a UUID that is reproducible given the same inputs — for idempotent resource creation, deduplication, content-addressed identifiers, or stable primary keys across agent runs. Prefer it over random UUID generation when consistency across retries or environments is required, and over local UUID libraries when you need an auditable, server-confirmed result with an input hash for traceability.

## Known failure modes

- Missing required fields (name, seed, namespace) may return a validation error
- Inputs exceeding 8192 characters per field may be rejected
- Network or payment authorization failure returns a 402 or 5xx error
- Malformed JSON body returns a 400 error

## How this service works

Seeded UUID: Seeded UUID derives a reproducible UUID-shaped identifier from seed and namespace text from bounded caller-supplied values without an external provider. Call Seeded UUID when an agent needs a reproducible decision that another run can independently replay. Returns the deterministic selection plus seed provenance, population bounds, and the operation-specific outcome for Seeded UUID as versioned deterministic JSON. Price: $0.001 USDC via x402 on Base. First-party, stateless, memory-…

## Output

Returns a JSON object containing a deterministic UUID string (e.g. 'c3697cf7-7902-53aa-b2e5-7933db6068e2'), a boolean confirming determinism, an SHA-256 hash of the input for audit purposes, confirmation that zero external calls were made, and a status of 'pass'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "maxLength": 8192,
   "description": "Name supplied to Seeded UUID; used only for this bounded calculation and processed in memory without retention."
  },
  "seed": {
   "type": "string",
   "maxLength": 8192,
   "description": "Seed supplied to Seeded UUID; used only for this bounded calculation and processed in memory without retention."
  },
  "namespace": {
   "type": "string",
   "maxLength": 8192,
   "description": "Namespace supplied to Seeded UUID; used only for this bounded calculation and processed in memory without retention."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "uuid": "c3697cf7-7902-53aa-b2e5-7933db6068e2",
   "deterministic": true
  },
  "schema": "delx/util-seeded-uuid/v1",
  "status": "pass",
  "evidence": {
   "retained": false,
   "input_sha256": "b22288e24e9544b74084d726dce5f93d0dda7c7fb9d694b833c5f3638bb72cbd",
   "external_calls": 0
  },
  "operation": "seeded_decision:seeded_uuid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-seeded-uuid-generator-ca117eb1/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)
