Floats
Quantumize returns floats to the sixth decimal place unsigned. The format of the response is JSON.
To access the Floats 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 Float
To retrieve a random float, make a GET request to the following endpoint:
GET https://api.quantumize.io/floatExample Request
GET https://api.quantumize.io/qrng-service/float
x-api-key: YOUR_API_KEY
Example Response
HTTP/1.1 200 OK
Content-Type: application/json
{
response: [
0.177649
]
}