Verifiable RNG API

Random numbers that are easy to verify.

Generate random integers or floats and verify results instantly by lookup ID. Built for transparency, fairness checks, and clean audit trails.

FastSimpleAuditableDeveloper-friendly
Example
Generate → Get ID → Verify anytime
/api/random
Request body
{
  "min": 0,
  "max": 1
}
Response (example)
result
1
type
integer
lookup id
cuid_••••••••••••
Verify with /verify using the lookup idonline

How verification works

Every generated result is stored with its parameters (min/max/type) and a unique ID. Anyone can paste that ID into the verify page to fetch the exact record and confirm the output.

Step
01
Generate
Send min/max (and type if needed).
Step
02
Receive ID
Store the lookup ID with your game/result.
Step
03
Verify
Paste the ID into /verify to confirm.
Built for fairness checks, audit trails, and simple integration.
Try verification →