# DataVault UUID Generator

> DataVault UUID Generator is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates one or more UUIDs on demand, returning structured data with a success flag

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/uuid
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-uuid-generator-ac8ef77a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pvq13cTE8ZnU8fuMP-jG_

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 datavault-uuid-generator-ac8ef77a -d '<json body>'
```

Example prompt: Generate 5 version-4 UUIDs for me so I can use them as unique IDs for new database records.

## When to prefer this

Use this endpoint when you need quick, pay-per-call UUID generation without setting up your own library or infrastructure, especially in lightweight agent workflows where importing a UUID library is not practical and a $0.01 cost per call is acceptable.

## Known failure modes

- Invalid version number (not 1 or 4) returns error
- Count of 0 or negative integer may return empty or error response
- Malformed request body returns 400-level error
- Payment not provided or insufficient USDC triggers 402 Payment Required

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a 'data' field containing the generated UUID(s) and a 'success' boolean indicating whether the operation completed successfully.

## 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/datavault-uuid-generator-ac8ef77a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
