GUID Generator

 

Your GUID

Bulk Generation



GUID API

An API is available to generate GUID.

GET https://api.extendsclass.com/uuid/:UUIDVersion?limit=:Limit

Generate GUID.
GUID versions: v1, v3, v4, v5.
Limit: Number of GUID to generate (Max: 1000, Default: 1).

JavaScript example:
const request = new XMLHttpRequest();
request.open("GET", "https://api.extendsclass.com/uuid/v4?limit=10", true);
request.onreadystatechange = () => {
};
request.send();
	
Response
Success: 200
[
   "aa5d758e-7646-45a6-bd67-7916eac77301",
   "4b60125d-9abf-4838-a348-c50bad1810ac",
   "d1fe1f34-9d6e-44d6-a7ed-86976cec26a0",
   "cd3a77fd-647b-4ef3-aea5-0192334c442f",
   "024365c4-3e8d-416d-9539-44cb5e3f7cef",
   "cb7332b7-5bea-4cb5-b85c-c13e403fbfff",
   "dafb6e2a-9e62-43f8-a5c7-93e2a368a9a2",
   "d75373fc-1862-4d3c-97cc-d0ce657cacd8",
   "7f96802b-eae9-473c-a8b6-38280914ff6d",
   "af9f326d-00b1-4234-bb19-06b1eeff9c1f"
]
Error: 400
UUID version is not available
Error: 400
Too many uuid to generate

What is an GUID ?

A GUID (Globally unique identifier) is a 128-bit number used to identify information. It is an UUID, the term GUID is used typically in software created by Microsoft!

GUID are represented as 32 hexadecimal digits separated by hyphens (36 characters with hyphens). For example: d036ac19-1269-49e0-8d3d-2a9ebb67ba6d

How to generate GUID ?

This online generator tool allows you to generate GUID.

No action is necessary on your part, as soon as you display this page, a GUID is generated.

We have created a bulk section to give you the ability to generate guid pools all at once.

You can also generate GUID with a GUID Generator API. See API section.

This online GUID generator uses the npm module uuid.


You can report a bug or give feedback by adding a comment (below) or by clicking "Contact me" link (at the top right hand corner of the page).

Comments