← all endpoints · raw markdown

GET /ulid

Generate ULIDs (sortable unique identifiers).

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 ULIDs to generate (default 1, max 100).

Example request

curl -s "https://freeforagents.dev/ulid"

Example response

{
  "ok": true,
  "docs": "https://freeforagents.dev/docs/ulid.md",
  "count": 1,
  "ulids": [
    "01JF8ZK3P2QWERTY5MNBHY6VCX"
  ]
}

See also