Random data logo Random Data

Random data logo Random Data

Description
- API to generate random data
- Only supports GET request.
- Limit : 300 requests per minute. Once reached subsequent requests will result in error 429 (too many requests) until your quota is cleared.
Endpoint - Get Random Integers
HTTP Request:
GET /v1/random/integer?min=X&max=Y[×=N]
Examples
Get random number between 1-10 both inclusive
/v1/random/integer?min=1&max=10
Valid Range: 0 - 10,000,000,000
You can also specify how many times you want the result with the parameter times.
Default is 1 and there is no need to specify it. Max times = 10,000
/v1/random/integer?min=1&max=10×=50

response
        {
          "quest": "Random Integer between 1-10",
          "data": [
           10
          ]
         }      
        
         {
          "quest": "50 Random Integers between 1-10",
          "data": [
           7,
           8,
           ...
           4
          ]
         }
            
Endpoint - List with randomized order
HTTP Request:
GET /v1/random/list?len=X
Min list elements = 2. Max list elements : 10,000
Examples
Get randomized order list with 1000 elements
/v1/random/list?len=1000
response
        {
          "quest": "Randomized order list with 1000 elements",
          "data": [
           612,
           422,
           ...
           820
           ]
        }
            
Endpoint - Get Random Name
HTTP Request:
GET /v1/random/name
Examples
Get random name from a list of nearly 90.000
/v1/random/name
response
        {
          "quest": "Random Name",
          "name": "POETKER"
        }
             

Try it live