← all endpoints · raw markdown

GET /uuid

Generate RFC 4122 version 4 UUIDs.

Free, zero-auth JSON API served by FreeForAgents. No API key, no signup. All responses include ok, the payload fields shown below, and a docs URL. CORS is fully open (Access-Control-Allow-Origin: *).

Parameters

NameTypeRequiredDescription
countintegernoHow many UUIDs to generate (default 1, max 100).

Example request

curl -s "https://freeforagents.dev/uuid?count=2"

Example response

{
  "ok": true,
  "docs": "https://freeforagents.dev/docs/uuid.md",
  "count": 2,
  "uuids": [
    "3f2504e0-4f89-41d3-9a0c-0305e82c3301",
    "9b2f1c3e-8a4d-4c2a-b6f0-1d2e3f4a5b6c"
  ]
}

See also