Skip to content

Items

GET /v1/items

Returns the complete list of Hypixel SkyBlock items.

Cache: 1 hour

Query Parameters

None.

Example

Terminal window
curl https://api.skytools.app/v1/items
const res = await fetch('https://api.skytools.app/v1/items');
const { data } = await res.json();

Response

{
"success": true,
"data": {
"items": [
{
"id": "DIAMOND_SWORD",
"name": "Diamond Sword",
"material": "DIAMOND_SWORD",
"tier": "COMMON"
}
]
},
"meta": { "cached": true, "api_version": "v1" }
}