UUID generate
Try it interactively →POST /api/uuid-generateGenerate UUIDs over an HTTP API. v4 (random, the standard choice) or v7 (time-ordered for database-friendly insertion). Bulk generation supported.
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| version | enum (v4 | v7 | nil) | "v4" | UUID version. |
| count | number (1…256) | 1 | How many UUIDs to emit. |
Response
Modes: json. Cache: not cacheable.
Code samples
Built from the single-v4 example.
curl -X POST https://api.xtract.bot/api/uuid-generate \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Account-Id: $XTRACT_ACCOUNT_ID" \
-H "X-Api-Key: $XTRACT_API_KEY" \
-d '{
"version": "v4",
"count": 1
}'