Get the most recently converted skin of a Bedrock player
GET/v2/skin/:xuid
Get the most recently converted skin of a Bedrock player
Request
Path Parameters
xuid stringrequired
Bedrock xuid
Example: 2535432196048835
Responses
- 200
- 400
Converted skin or an empty object if there is no skin stored for that player
- application/json
- Schema
- Example (from schema)
Schema
hash stringrequired
The hash of the skin bytes
is_steve booleanrequired
If the skin is a Steve or an Alex
signature string
The signature of the skin data used by Minecraft
texture_id stringrequired
The texture id used by Minecraft
value stringrequired
The value of the skin data used by Minecraft
{
"hash": "string",
"is_steve": true,
"signature": "string",
"texture_id": "string",
"value": "string"
}
Invalid xuid (not an int)
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
The error message
{
"message": "string"
}
Loading...