mojang-minecraft-api
Installation
npm install mojang-minecraft-api
Functions
-
getServiceStatus() โ
Object
-
Gets the current service status of various Mojang services
-
getUUID(username) โ
Object
-
Gets the UUID of a player
-
getNameHistory(uuid) โ
Object
-
Gets the name history of a player
-
getNameHistoryByName(username) โ
Object
-
Gets the name history of a player
-
getUUIDs(names) โ
Object
-
Gets the UUIDs for multiple players
-
getProfile(uuid) โ
Object
-
Gets the profile of a player
-
getProfileByName(username) โ
Object
-
Gets the profile of a player
-
getSkinData(uuid) โ
Object
-
Gets the skin data of a player
-
getSkinDataByName(username) โ
Object
-
Gets the skin data of a player
-
getSkinURL(uuid) โ
string
-
Gets the skin URL of a player
-
getSkinURLByName(username) โ
string
-
Gets the skin URL of a player
-
getPlayerHead(uuid) โ
string
-
Gets the player head image of a player
-
getPlayerHeadByName(username) โ
string
-
Gets the player head image of a player
Object
getServiceStatus() โ Gets the current service status of various Mojang services
Kind: global function
Returns: Object
- - An Object that contains the status of various Mojang services
Object
getUUID(username) โ Gets the UUID of a player
Kind: global function
Returns: Object
- - This will return the UUID of the name that is provided
Param | Type | Description |
---|---|---|
username | string |
The username of the player |
Object
getNameHistory(uuid) โ Gets the name history of a player
Kind: global function
Returns: Object
- - This will return all the usernames this user used in the past and the one they are using currently.
Param | Type | Description |
---|---|---|
uuid | string |
The UUID from the player |
Object
getNameHistoryByName(username) โ Gets the name history of a player
Kind: global function
Returns: Object
- - This will return all the usernames this user used in the past and the one they are using currently.
Param | Type | Description |
---|---|---|
username | string |
The username of the player |
Object
getUUIDs(names) โ Gets the UUIDs for multiple players
Kind: global function
Returns: Object
- - This will return the UUID's and names of the players that are provided
Param | Type | Description |
---|---|---|
names | Array.<string> |
An array with player names |
Object
getProfile(uuid) โ Gets the profile of a player
Kind: global function
Returns: Object
- - This will return the player's username and other additional information (e.g. skins)
Param | Type | Description |
---|---|---|
uuid | string |
The UUID from the player |
Object
getProfileByName(username) โ Gets the profile of a player
Kind: global function
Returns: Object
- - This will return the player's username and other additional information (e.g. skins)
Param | Type | Description |
---|---|---|
username | string |
The username of the player |
Object
getSkinData(uuid) โ Gets the skin data of a player
Kind: global function
Returns: Object
- - This will return the player's skin information (e.g. skin url)
Param | Type | Description |
---|---|---|
uuid | string |
The UUID from the player |
Object
getSkinDataByName(username) โ Gets the skin data of a player
Kind: global function
Returns: Object
- - This will return the player's skin information (e.g. skin URL)
Param | Type | Description |
---|---|---|
username | string |
The username of the player |
string
getSkinURL(uuid) โ Gets the skin URL of a player
Kind: global function
Returns: string
- - This will return the URL of the player skin
Param | Type | Description |
---|---|---|
uuid | string |
The UUID from the player |
string
getSkinURLByName(username) โ Gets the skin URL of a player
Kind: global function
Returns: string
- - This will return the URL of the player skin
Param | Type | Description |
---|---|---|
username | string |
The username of the player |
string
getPlayerHead(uuid) โ Gets the player head image of a player
Kind: global function
Returns: string
- - This will return a base64 string of the player head image (8x8)
Param | Type | Description |
---|---|---|
uuid | string |
The UUID from the player |
string
getPlayerHeadByName(username) โ Gets the player head image of a player
Kind: global function
Returns: string
- - This will return a base64 string of the player head image (8x8)
Param | Type | Description |
---|---|---|
username | string |
The username of the player |