Java Edition

Resolve UUID

Resolve a username or UUID into the current canonical UUID and player name.

GEThttps://util.axolite.app/v1/player/:identifier/uuid
FormatJSON
GroupJava Edition
DemoAvailable

Parameters

NameLocationRequiredDescription
identifierpathYesJava 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.