Skip to content

SkyTools API

The SkyTools API provides real-time and historical data for Hypixel SkyBlock, including bazaar prices, auctions, player profiles, and more.

Base URL: https://api.skytools.app/v1

Quick Start

All API requests require an API key. You need an active Starter ($5.99/mo) or Pro ($9.99/mo) subscription to create one.

  1. Subscribe at skytools.app
  2. Create an API key in the Developer Dashboard
  3. Include it in your requests:
Terminal window
curl -H "X-API-Key: sk_your_key_here" https://api.skytools.app/v1/bazaar?mode=list
const res = await fetch('https://api.skytools.app/v1/bazaar?mode=list', {
headers: { 'X-API-Key': 'sk_your_key_here' },
});
const data = await res.json();

Response Format

All endpoints return a consistent JSON structure:

// Success
{
"success": true,
"data": { ... },
"meta": {
"cached": false,
"api_version": "v1"
}
}
// Error
{
"success": false,
"error": {
"code": "UNAUTHORIZED",
"message": "API key is required."
}
}

Available Endpoints

Bazaar

Real-time bazaar prices, flip opportunities, and price history. View docs

Auctions

Active auctions and lowest BIN prices across all items. View docs

Player Profiles

Look up any player’s SkyBlock profiles by username. View docs

Items & Collections

Complete item database and collection requirements. View docs

Mayor & Elections

Current mayor, perks, and election history. View docs

Fire Sales & Guilds

Active fire sales, sale history, and guild lookups. View docs