Quantumize
Powered by Quantal Security
Getting Started
Integers
Floats
Hex
Strings

Integers

Quantumize returns 10-digit signed integers. The range of possible values is -9999999999 to 9999999999. The format of the response is JSON.

To access the Integers 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 Integer

To retrieve a random integer, make a GET request to the following endpoint: GET https://api.quantumize.io/integer

Example Request

GET https://api.quantumize.io/qrng-service/integer
x-api-key: YOUR_API_KEY

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  response: [
    1234567890
  ]
}