API CatalogUUID/ULID Generator

UUID and ULID Generator API

Generate identifiers for tests, fixtures, automation workflows, database seeds, and developer tools.

Endpoint

POST /v1/dev/data/id/generate

Request body

FieldTypeRequiredDescription
countnumberNoNumber of IDs to generate, from 1 to 100. Defaults to 1.
kindstringNoID type: uuid4, uuid1, or ulid. Defaults to uuid4.

Example request

curl --request POST \
  --url https://apimask-developer-utilities-api.p.rapidapi.com/v1/dev/data/id/generate \
  --header "Content-Type: application/json" \
  --header "X-RapidAPI-Key: $RAPIDAPI_KEY" \
  --header "X-RapidAPI-Host: apimask-developer-utilities-api.p.rapidapi.com" \
  --data '{"kind":"uuid4","count":3}'

Example response

{
  "success": true,
  "data": {
    "kind": "uuid4",
    "ids": [
      "2b76b310-9a18-4edc-a88a-0f65c8ce9b88",
      "86e23583-13df-4022-99b6-4a26fd0d14fb",
      "b2d198e4-cc6e-4ad8-8f15-7c3a04cfb274"
    ]
  },
  "error": null,
  "meta": {}
}