UUID
Generate UUID v4 values.
UtilitiesuuidrandomCost: 1 pt
Endpoint
/api/v1/uuid?count=1
curl (bash)
curl -H "x-api-key: $APINEST_API_KEY" "/api/v1/uuid?count=1"
Windows PowerShell
iwr -Uri "/api/v1/uuid?count=1" -Headers @{ "x-api-key" = $env:APINEST_API_KEY } | Select-Object -Expand Content
Node.js example
const res = await fetch("/api/v1/uuid?count=1", { headers: { "x-api-key": process.env.APINEST_API_KEY! } }) console.log(await res.json())
Include your API Key via the "x-api-key" header.
Parameters
Query parameters accepted by this endpoint
Name | Type | Required | Default | Description |
---|---|---|---|---|
count | integer | No | 1 | How many UUIDs (1–100) |
Status
v1 — Online