Get a list of the most recently uploaded skins
GET/v2/skin/bedrock/recent/:page
Get a list of the most recently uploaded skins
Request
Path Parameters
page stringrequired
Number between 1 - page limit. Defaults to 1
Example: 1
Responses
- 200
- 400
The most recently uploaded skins. First element has been uploaded most recently etc.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
idintegerrequired
The converted skin id
texture_idstringrequired
The texture id used by Minecraft
total_pagesinteger
The amount of pages available
{
"data": [
{
"id": 0,
"texture_id": "string"
}
],
"total_pages": 0
}
Invalid page number (e.g. negative, decimal, too large)
- application/json
- Schema
- Example (from schema)
Schema
messagestringrequired
The error message
{
"message": "string"
}