Random GUID Generator

Lightweight Azure Functions endpoint for generating fresh UUID v4 values on demand. Useful for testing flows, sample payloads, and quick identifier generation in scripts.

Brought to you by the Online team

Typical API response

HTTP 200 · application/json

{"id":"a2f7bf8d-4c91-4a11-b2eb-0f7a546f8b03"}

Each request returns a newly generated identifier.

Endpoint

GET /api/louwmanid?code=<function-key>

About

The API generates one RFC 4122 compliant UUID v4 per request using the Node.js uuid package. Responses are JSON and can be consumed directly by automation jobs, backend services, and test harnesses.

Function-level authentication is enabled for /api/louwmanid, so callers must supply the key through the code query parameter or x-functions-key header.

Usage notes

Team

Maintained by the Online team at Louwman ICT Services. Questions or feedback? Contact online@louwmanictservices.nl.

Changelog

1.1.0

19 June 2026

  • Added custom root splash page with endpoint guidance and sample response
  • Preserved /api/louwmanid route while enabling a main-domain landing page

1.0.0

Initial release

  • Added HTTP-triggered Azure Function that returns a random UUID in JSON
  • Added deployment and health-check pipeline automation