GET
/v1/generateUUID Generator
Generate RFC 4122 version 4 UUIDs.
Part of UUID Generator· Rate limits: 60 req/min
Parameters
countqueryintegerHow many UUIDs to return (1–20)
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| count | query | integer | No | How many UUIDs to return (1–20) |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Code examples
cURL
curl -s "https://uuidgen.apiseeker.com/v1/generate" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response
JSON
{
"success": true,
"data": {
"uuids": [
"550e8400-e29b-41d4-a716-446655440000"
],
"count": 1
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Try this endpoint
API Playground
UUID Generator
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GET
uuidgen.apiseeker.comhttps://uuidgen.apiseeker.com/v1/generateStatus: —Latency: —
Response headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
cURL
curl -s "https://uuidgen.apiseeker.com/v1/generate" \
-H "X-SEEKER-Key: YOUR_API_KEY"