Catalog/util-uuid

Utilities

Generate UUIDs API

Generate one or more random v4 UUIDs. Answers 'generate a UUID', 'give me 5 unique ids'.

Price$0.01per request
MethodPOST
Route/v1/util/uuid
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
utiluuidguididgeneraterandom
API URLhttps://x402.hexl.dev/v1/util/uuid
Integration docs
Example request
{
  "count": 2
}
Example response
{
  "count": 2,
  "uuids": [
    "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "9f1c8a2e-..."
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "minimum": 1,
      "maximum": 100,
      "default": 1
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "count",
    "uuids"
  ],
  "properties": {
    "count": {
      "type": "number"
    },
    "uuids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}