获取最近上传的皮肤列表
GET/v2/skin/bedrock/recent/:page
获取最近上传的皮肤列表
Request
路径参数
page stringrequired
介于 1 和页数上限之间的数字。默 认为 1
Example: 1
Responses
- 200
- 400
最近上传的皮肤。第一个元素为最近上传,以此类推。
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
idintegerrequired
已转换皮肤 ID
texture_idstringrequired
Minecraft 使用的材质 ID
total_pagesinteger
可用页数
{
"data": [
{
"id": 0,
"texture_id": "string"
}
],
"total_pages": 0
}
页码无效(例如负数、小数或过大)
- application/json
- Schema
- Example (from schema)
Schema
messagestringrequired
错误消息
{
"message": "string"
}