Games & Comics — entry 045 of 75
Mojang
Mojang Studios' account API covers username/UUID lookup, profile and skin data, and account management, spread across api.mojang.com, sessionserver.mojang.com, and the newer api.minecraftservices.com. Read-only lookups (e.g. /users/profiles/minecraft/<name>, both confirmed live and keyless) need no authentication at all, while anything account-modifying requires a Microsoft/Xbox Live OAuth bearer token — there's no simple API-key tier, correcting the stored auth field — and live checks show no CORS headers on the public endpoints.
GreatAPIs Score
Auth quickstart
- Register an app / run the OAuth flow to obtain a bearer token.
- Send it as an Authorization header
Authorization: Bearer <token>
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.
Developer reference
200 requests per 2 minutes (varies per endpoint, e.g. 20 requests/5 min, 6 joins/30s on other Mojang/Microsoft endpoints)