GET /cors/profile/:uuid
api.mojang.com/user/profile/
, including any status codes or error messages. The only thing added is the Access-Control-Allow-Origin
header.GET /cors/username/:username
api.mojang.com/users/profiles/minecraft/
, including any status codes or error messages. The only thing added is the Access-Control-Allow-Origin
header.GET /cors/names/:uuid
api.mojang.com/user/profiles/:uuid/names
, including any status codes or error messages. The only thing added is the Access-Control-Allow-Origin
header.GET /cors/sessionserver/:uuid
sessionserver.mojang.com/session/minecraft/profile/:uuid
, including any status codes or error messages. The only thing added is the Access-Control-Allow-Origin
header.GET /cors/optifine/:username
image/png
object of the user's OptiFine capeapplication/json
response similar to this:{"error": "No OptiFine cape was found for the account :username."}
200
on success, 404
on error.GET /cors/labymod/cape/:uuid
image/png
object of the user's LabyMod capeapplication/json
response similar to this:{"error": "No LabyMod cape was found for the account with UUID :uuid."}
200
on success, 404
on error.GET /cors/labymod/bandana/:uuid
image/png
object of the user's LabyMod bandanaapplication/json
response similar to this:{"error": "No LabyMod bandana was found for the account with UUID :uuid."}
200
on success, 404
on error.GET /cors/textures/:identifier
:identifier
is the texture identifier normally passed to https://textures.minecraft.net/texture/
.image/png
object of the specified texture, fetched from Minecraft's texture servers.application/json
response similar to this:{"error": "No Minecraft texture exists under the identifier :identifier."}
200
on success, 404
on error.Copyright 88 2022, all rights reserved.