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], ... }, ...] }
$palette = json_decode(file_get_contents(
'https://rnd.mtex.dev/api/color?count=5&format=hex'
), true);
// [['hex'=>'#a3f2c1'], ['hex'=>'#ff6b35'], ...]
import requests
r = requests.get('https://rnd.mtex.dev/api/pick',
params={'items': 'red,green,blue,yellow', 'count': 2, 'unique': 'true'})
print(r.json())