Java Edition
Batch Username Lookup
Resolve up to 10 Java usernames in one POST request.
POST
https://util.axolite.app/v1/player/batchParameters
| Name | Location | Required | Description |
|---|---|---|---|
usernames | body | Yes | Array of 1 to 10 usernames. Example: ["Notch"] |
Request examples
curl -X POST "https://util.axolite.app/v1/player/batch" \
+ -H "Content-Type: application/json" \
+ -d '{
"usernames": [
"Notch"
]
}'Sample response
{
"results": [{ "id": "069a79f4-44e9-4726-a5be-fca90e38aaf5", "name": "Notch" }],
"errors": []
}Notes
- Accepts a JSON body with a `usernames` array.
- Best for queue warmups and admin tooling.