useless-rng-api

Simple random number generator API built for automation tools like n8n and Make.

Endpoint Usage

GET https://useless-rng-api.vercel.app/api/rng?min=1&max=100

GET https://useless-rng-api.vercel.app/api/rng?min=1&max=100&amount=5

Example Request

curl "https://useless-rng-api.vercel.app/api/rng?min=1&max=100&amount=5"

Example JSON Response

{
  "min": 1,
  "max": 100,
  "amount": 5,
  "numbers": [42, 7, 89, 23, 100]
}