Java Edition
Resolve UUID
Resolve a username or UUID into the current canonical UUID and player name.
GET
https://util.axolite.app/v1/player/:identifier/uuidParameters
| Name | Location | Required | Description |
|---|---|---|---|
identifier | path | Yes | Java username or UUID. Example: Notch |
Request examples
curl "https://util.axolite.app/v1/player/Notch/uuid"Sample response
{
"uuid": "069a79f4-44e9-4726-a5be-fca90e38aaf5",
"name": "Notch"
}Notes
- Use this when you only need the UUID/name pair.
- Helpful for cache key normalization.