# rng.sociologic.ai UUID Generator

> rng.sociologic.ai UUID Generator is a paid API for AI agents from rng.sociologic.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Generates one or more cryptographically secure UUID v4 values via a simple GET request

## Facts

- Endpoint: GET https://rng.sociologic.ai/uuid
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rng-sociologic-ai-454d9c36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JpsVOJG6zsWYjyIrLxYoC

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 rng-sociologic-ai-454d9c36
```

Example prompt: Generate 5 cryptographically secure UUID v4s for me — I need them as unique IDs for new database records.

## When to prefer this

Use this endpoint when you need cryptographically secure UUID v4s with entropy details included in the response, especially when working in an agentic context where payment via x402 is already established. Prefer over client-side UUID generation when auditability or server-side randomness guarantees are important.

## Known failure modes

- count parameter out of range (must be 1-100): returns validation error
- payment not provided or insufficient (x402 payment required): returns 402 Payment Required
- server-side entropy source failure: returns 500 error

## How this service works

Generate cryptographically secure UUID v4(s)

## Output

Returns a UUID v4 string (e.g. '69db7498-7dd6-4fb6-b245-93b4a749f1ae') along with entropy details including hex and raw integer representations, plus the version number. When count > 1, returns multiple such objects.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "count": 5
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "count": {
       "type": "integer",
       "default": 1,
       "maximum": 100,
       "minimum": 1,
       "description": "Number of UUIDs (1-100)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rng-sociologic-ai-454d9c36/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rng.sociologic.ai](https://www.zero.xyz/host/rng.sociologic.ai/llms.txt)
