Zero auth · Zero setup · Pure GET

Random data,
on demand.

Generate UUIDs, names, colors, lorem ipsum, dice rolls, passwords, and more — straight from a GET request. Built for developers.

live requests
17
endpoints
0
auth required
requests/day
PHP
powered by php-zero
// endpoints
// quick examples
cURL — generate 3 UUIDs
curl "https://rnd.mtex.dev/api/uuid?count=3"
JavaScript — roll 2d6 five times
const res = await fetch('https://rnd.mtex.dev/api/roll?dice=2d6&count=5'); const data = await res.json(); // { count: 5, results: [{ result: 9, dice: [4,5], ... }, ...] }
PHP — random color palette
$palette = json_decode(file_get_contents( 'https://rnd.mtex.dev/api/color?count=5&format=hex' ), true); // [['hex'=>'#a3f2c1'], ['hex'=>'#ff6b35'], ...]
Python — pick from a list
import requests r = requests.get('https://rnd.mtex.dev/api/pick', params={'items': 'red,green,blue,yellow', 'count': 2, 'unique': 'true'}) print(r.json())