Hex
Quantumize returns a hex value represented as a 16-character string. The format of the response is JSON.
To access the Hex API, you will need to include your API key in the
x-api-key HTTP header of each request. This header allows the API to authenticate and authorize your application to access its resources.
Getting a Random Hex
To retrieve a random hex string, make a GET request to the following endpoint:
GET https://api.quantumize.io/hexExample Request
GET https://api.quantumize.io/qrng-service/hex
x-api-key: YOUR_API_KEY
Example Response
HTTP/1.1 200 OK
Content-Type: application/json
{
response: [
"cbd68f6fdf87b0e1"
]
}