Generate Random Numbers
Generate Random Numbers
GET /misc/randomnumber - Generate Random Numbers
Need a single random number, or a string of unique decimals? This endpoint covers both.
Overview
This is a flexible random-number generator. You can specify the range (min/max), how many numbers to generate, whether duplicates are allowed, and whether to generate decimals (with a configurable number of decimal places).
Flow
Things to know
[!WARNING]
Constraint when duplicates are disabled
When allowrepeat=false, make sure the value range (max - min + 1) is greater than or equal to the requested count. Otherwise the API cannot produce enough distinct numbers and the request will fail with a 400 error.