<?php
$uuid = file_get_content('https://minecraft-api.com/api/uuid/{pseudo}');
$json = file_get_content('https://minecraft-api.com/api/uuid/{pseudo}/json');
echo $uuid;
echo $json;
?>
Plain text:
edd56acaa5534459b6825898e5e37ad6
JSON:
{"uuid": "edd56acaa5534459b6825898e5e37ad6"}
<?php
$pseudo = file_get_content('https://minecraft-api.com/api/pseudo/{uuid}');
$json = file_get_content('https://minecraft-api.com/api/pseudo/{uuid}/json');
echo $pseudo;
echo $json;
?>
Plain text:
Faragnight
JSON:
{"pseudo": "Faragnight"}