Games & Comics — entry 047 of 77

Mojang

Verified Jul 2026

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.

minecraftauthenticationplayer-dataoauth
AuthenticationOAuthRequires an OAuth flow; expect app registration.
HTTPSSupportedTraffic is encrypted in transit.
CORSDisabledBrowser calls need a server-side proxy.
PricingFreeNo paid tier — free for the documented use case.
FormatsJSONResponses can be requested as JSON.

GreatAPIs Score

Score57out of 100
Authentication8/25OAuth flow required
Pricing20/20Free to use
Docs0/20No docs or spec available
Formats9/15Single response format
Freshness20/20Verified within 6 months

Embed this badge

Scored 57 on greatapis.com
<a href="https://greatapis.com/api/mojang/"><img src="https://greatapis.com/badge/mojang.svg" alt="Scored 57 on greatapis.com"></a>

Auth quickstart

  1. Register an app / run the OAuth flow to obtain a bearer token.
  2. Send it as an Authorization headerAuthorization: Bearer <token>
Stored keyNo key stored

Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.