POST/v1/player/batch

Batch Username Lookup

Resolve up to 10 Java usernames in one POST request.

Open docs
Request builderReady
Request
POST https://util.axolite.app/v1/player/batch

{
  "Content-Type": "application/json"
}

{
  "usernames": [
    "Notch"
  ]
}
ResponseNo request yet
{
  "status": "ready"
}
Code example
curl
curl -X POST "https://util.axolite.app/v1/player/batch" \
+  -H "Content-Type: application/json" \
+  -d '{
  "usernames": [
    "Notch"
  ]
}'