Skip to main content

Minecraft

Base URL: https://drain.lat/api/v1/minecraft
Fetch a Minecraft Java Edition player profile.
GET /api/v1/minecraft/profile/:username
username
string
required
The Minecraft Java Edition username.
curl "https://drain.lat/api/v1/minecraft/profile/Notch" \
  -H "x-api-key: YOUR_API_KEY"
uuid
string
Player UUID.
username
string
Current username.
skinUrl
string
Skin texture URL.
capeUrl
string
Cape texture URL. null if no cape.
skinModel
string
Skin model type: classic or slim.
hasCape
boolean
Whether the player has a cape.
skinRenderUrl
string
Full body skin render URL.
headRenderUrl
string
Face/head render URL.
profileUrl
string
Link to the NameMC profile.
Response
{
  "uuid": "069a79f4-44e9-4726-a5be-fca90e38aaf5",
  "username": "Notch",
  "skinUrl": "https://textures.minecraft.net/texture/...",
  "capeUrl": null,
  "skinModel": "classic",
  "hasCape": false,
  "skinRenderUrl": "https://visage.surgeplay.com/full/512/069a79f4-44e9-4726-a5be-fca90e38aaf5",
  "headRenderUrl": "https://visage.surgeplay.com/face/512/069a79f4-44e9-4726-a5be-fca90e38aaf5",
  "profileUrl": "https://namemc.com/profile/Notch",
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}
Rate limited at 600 requests per 10 minutes by Mojang’s API.