Tools API Blog
Sign in Create account

Generate UUID

Generate UUID is an API that creates unique identifiers (UUID v4) to use as a record ID, an idempotency key, or anything that needs an identifier that never repeats.

How it works

You ask for however many UUIDs you need and get them back generated on the spot, using Node.js's own cryptographic generator: none are stored or reused.

All you need

  • Your API key. Create it in your dashboard with "+ Create key". It's shown only once, so copy and save it.
  • In your automation platform, an "HTTP Request" step (n8n, Make, Zapier, Pipedream… all have one).

How to use it in n8n (step by step)

In the HTTP Request node:

  • Method: POST
  • URL: https://api.cofferdock.com/generate-uuid
  • Send Headers: on → add two: x-api-key = your key, and Content-Type = application/json
  • Send Body: on → Body Content Type: JSON → {} (for 1 UUID) or { "count": 5 } (for several)

In Make (HTTP → Make a request module): same method and URL, Body type: Raw, Content type: JSON, with the same body.

Options (inside the JSON)

OptionDefaultWhat it does
count1How many UUIDs to generate at once (up to 100).

What you get back

Always an array in uuids, even if you only ask for 1, so there's just one response shape to handle.