Interactive Demo
Run the API without leaving the docs.
Switch between public endpoints, try real player queries, and inspect the exact request and response shape before you integrate it.
POST
/v1/player/batchBatch Username Lookup
Resolve up to 10 Java usernames in one POST request.
Request builderReady
Request
POST https://util.axolite.app/v1/player/batch
{
"Content-Type": "application/json"
}
{
"usernames": [
"Notch"
]
}Response
{
"status": "ready"
}Code example
curl -X POST "https://util.axolite.app/v1/player/batch" \
+ -H "Content-Type: application/json" \
+ -d '{
"usernames": [
"Notch"
]
}'