Hypixel SkyBlock Bazaar Prices Scraper avatar

Hypixel SkyBlock Bazaar Prices Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Hypixel SkyBlock Bazaar Prices Scraper

Hypixel SkyBlock Bazaar Prices Scraper

Track the Hypixel SkyBlock Bazaar straight from the official API. Pull every product with instant buy and sell prices, the spread, current and weekly volume, open order counts, and full buy and sell order books. Handy for flipping, spread hunting, and economy research.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

ParseForge Banner

💰 Hypixel SkyBlock Bazaar Prices Scraper

🚀 Export the live Hypixel SkyBlock Bazaar order book in seconds. Pull from 1,900+ tradeable products, each joined to its current instant buy and sell prices, full order depth, and weekly volume.

🕒 Last updated: 2026-06-05 · 📊 17 fields per record · 1,933 Bazaar products · Official Hypixel API v2

Track the Hypixel SkyBlock Bazaar economy without copying numbers by hand. This Actor reads the official Hypixel API v2 /skyblock/bazaar endpoint, turns the live order book into clean flat rows, and returns one record per product. Every record carries the product ID, the instant buy and sell prices, the spread between them, current and weekly buy and sell volumes, the open order counts on both sides, and the full buy and sell summaries with amount, price per unit, and order count at each tier.

Coverage: the Bazaar currently exposes 1,933 tradeable products. You can list products automatically sorted by trade volume, or pass an exact set of product IDs. No API key is required for this endpoint.

🎯 Target Audience💡 Primary Use Cases
SkyBlock traders and flippersSpotting buy and sell spreads
Market analysts and data hobbyistsTracking product prices over time
Guild and community tool buildersPowering price widgets and bots
Gaming researchersStudying a live virtual economy

📋 What the Hypixel SkyBlock Bazaar Scraper does

  • Reads the official Hypixel SkyBlock Bazaar endpoint in a single call, no API key needed.
  • Maps each product in the response to one flat dataset record.
  • Surfaces the instant buy price, instant sell price, and the spread between them.
  • Carries current and weekly buy and sell volume plus open order counts from quick status.
  • Keeps the full buy and sell summaries, each tier with amount, price per unit, and orders.
  • Lets you sort the product pool by trade volume or product ID before applying the item cap.
  • Lets you keep only products that currently have at least one open order.

🎬 Full Demo (🚧 Coming soon)

⚙️ Input

FieldTypeDescription
productIdsarrayOptional list of specific Bazaar product IDs. Leave empty to auto-list products.
maxItemsintegerFree users limited to 10. Paid users up to 1,000,000.
sortBystringOrder the product pool before the cap (buyMovingWeek, sellMovingWeek, buyVolume, sellVolume, productId).
onlyTradedbooleanKeep only products with an open buy or sell order. Default true.

Example 1. Auto-list the most traded products:

{
"maxItems": 5,
"sortBy": "buyMovingWeek",
"onlyTraded": true
}

Example 2. Fetch specific products by ID:

{
"productIds": ["ENCHANTED_DIAMOND", "COAL", "BOOSTER_COOKIE"],
"onlyTraded": false
}

⚠️ Good to Know: Prices are reported in coins, the SkyBlock currency. The instant buy price is the lowest open sell order and the instant sell price is the highest open buy order, so the spread is the gap you pay to cross the book. Some products show a thin order book or a single side when little is listed.

📊 Output

FieldDescription
🏷 productIdBazaar product identifier
🟢 instantBuyPricePrice to instantly buy one unit (lowest sell order) in coins
🔴 instantSellPricePrice to instantly sell one unit (highest buy order) in coins
📈 spreadInstant buy price minus instant sell price in coins
📦 buyVolumeCurrent units wanted across open buy orders
📦 sellVolumeCurrent units offered across open sell orders
📅 buyMovingWeekUnits bought over the trailing week
📅 sellMovingWeekUnits sold over the trailing week
🧾 buyOrdersNumber of open buy orders
🧾 sellOrdersNumber of open sell orders
⬆ topBuyPricePerUnitBest buy order price per unit
⬇ topSellPricePerUnitBest sell order price per unit
📥 buySummaryBuy order book tiers (amount, pricePerUnit, orders)
📤 sellSummarySell order book tiers (amount, pricePerUnit, orders)
🔄 lastUpdatedISO timestamp the Bazaar data was refreshed upstream
🕒 scrapedAtISO timestamp of collection
❌ errorError message, null on success

Real sample records:

{
"productId": "ESSENCE_CRIMSON",
"instantBuyPrice": 1043.26,
"instantSellPrice": 1005.74,
"spread": 37.52,
"buyVolume": 59154780,
"sellVolume": 4979666,
"buyMovingWeek": 230170545,
"sellMovingWeek": 85544041,
"buyOrders": 311,
"sellOrders": 90,
"topBuyPricePerUnit": 1040.2,
"topSellPricePerUnit": 1005.8,
"buySummary": [
{ "amount": 124992, "pricePerUnit": 1040.2, "orders": 1 },
{ "amount": 57566, "pricePerUnit": 1040.3, "orders": 1 }
],
"sellSummary": [
{ "amount": 56070, "pricePerUnit": 1005.8, "orders": 1 },
{ "amount": 213000, "pricePerUnit": 1005.7, "orders": 3 }
],
"lastUpdated": "2026-06-05T16:44:08.047Z",
"scrapedAt": "2026-06-05T16:44:23.346Z",
"error": null
}
{
"productId": "COAL",
"instantBuyPrice": 13.58,
"instantSellPrice": 9.5,
"spread": 4.08,
"buyVolume": 11537758,
"sellVolume": 21619253,
"buyMovingWeek": 59860280,
"sellMovingWeek": 500502850,
"buyOrders": 188,
"sellOrders": 334,
"topBuyPricePerUnit": 13.5,
"topSellPricePerUnit": 9.6,
"buySummary": [
{ "amount": 42551, "pricePerUnit": 13.5, "orders": 1 },
{ "amount": 911509, "pricePerUnit": 13.6, "orders": 14 }
],
"sellSummary": [
{ "amount": 3345, "pricePerUnit": 9.6, "orders": 1 },
{ "amount": 711415, "pricePerUnit": 9.5, "orders": 10 }
],
"lastUpdated": "2026-06-05T16:44:08.047Z",
"scrapedAt": "2026-06-05T16:44:23.404Z",
"error": null
}
{
"productId": "SEEDS",
"instantBuyPrice": 2.87,
"instantSellPrice": 0.74,
"spread": 2.13,
"buyVolume": 46887704,
"sellVolume": 8689584,
"buyMovingWeek": 56159304,
"sellMovingWeek": 914813235,
"buyOrders": 707,
"sellOrders": 125,
"topBuyPricePerUnit": 2.7,
"topSellPricePerUnit": 0.9,
"buySummary": [
{ "amount": 192, "pricePerUnit": 2.7, "orders": 1 },
{ "amount": 285549, "pricePerUnit": 2.8, "orders": 15 }
],
"sellSummary": [
{ "amount": 21109, "pricePerUnit": 0.9, "orders": 1 },
{ "amount": 51521, "pricePerUnit": 0.8, "orders": 2 }
],
"lastUpdated": "2026-06-05T16:44:08.047Z",
"scrapedAt": "2026-06-05T16:44:23.464Z",
"error": null
}

✨ Why choose this Actor

  • Official source. Reads the public Hypixel API v2 Bazaar endpoint directly, no key required.
  • Flat and joined. The nested order book becomes one clean row per product.
  • Spread ready. The gap between instant buy and instant sell is computed for you.
  • Full depth. Both the buy and sell summaries ship with every tier intact.
  • Sortable. Lead with the most traded products by week or current volume.

📈 How it compares to alternatives

ApproachPer product rowsLive order bookSpread precomputedWeekly volume
This ActorYesYesYesYes
Manual API callsYesYesNoYes
Copying from in-game UIPartialYesNoNo
Third party wikiPartialOften staleNoSometimes

🚀 How to use

  1. Create a free Apify account if you do not have one yet.
  2. Open the Hypixel SkyBlock Bazaar Prices Scraper in the Apify Console.
  3. Leave the input empty for the most traded products, or add specific productIds.
  4. Click Start and watch the run collect products with their order books.
  5. Pull the results from the dataset or through the API.

💼 Business use cases

Market making and flipping

GoalHow this Actor helps
Find profitable spreadsScan the spread field across many products
Size an orderRead buyVolume, sellVolume, and the summaries for depth

Price monitoring

GoalHow this Actor helps
Track a product over timeRe-run on a schedule and store snapshots
Alert on a thresholdPipe instantBuyPrice or instantSellPrice into your own logic

Community tools

GoalHow this Actor helps
Power a price widgetUse productId and the price fields directly
Feed a Discord botQuery specific productIds on demand

Research

GoalHow this Actor helps
Study a virtual economyCollect broad product and order book samples
Compare volume to priceJoin buyMovingWeek and instantBuyPrice for analysis

🔌 Automating Hypixel SkyBlock Bazaar Prices Scraper

Connect runs to the tools your team already uses:

  • Make and Zapier to trigger runs and route results.
  • Slack to post price alerts to a channel.
  • Airbyte to load datasets into a warehouse.
  • GitHub Actions to run scheduled collections.
  • Google Drive to archive snapshots automatically.

🌟 Beyond business use cases

  • Research: sample a live in-game economy for coursework or articles.
  • Personal: keep an eye on the products you trade most.
  • Non-profit: power a free community price tracker.
  • Experimentation: prototype a trading model on real order book data.

🤖 Ask an AI assistant

Paste a dataset into your favorite assistant and ask it to summarize trends:

❓ Frequently Asked Questions

Do I need a Hypixel API key? No. The SkyBlock Bazaar endpoint used here is public and keyless.

What currency are prices in? SkyBlock coins, the in-game currency for the Bazaar.

What is the difference between instant buy and instant sell price? The instant buy price is the lowest open sell order, what you pay to buy now. The instant sell price is the highest open buy order, what you receive to sell now.

What does the spread field mean? It is the instant buy price minus the instant sell price, a quick read on the cost to cross the order book.

Can I scrape specific products? Yes. Provide their IDs in the productIds field, for example ENCHANTED_DIAMOND or COAL.

How many products can I pull? Free accounts return up to 10 products. Paid accounts can return up to 1,000,000.

How fresh are the prices? They reflect the Bazaar at the moment of the run. The lastUpdated field shows when the upstream data refreshed. Re-run to refresh.

How are products ordered? By the sortBy option. You can lead with weekly buy or sell volume, current volume, or product ID.

Can I keep only products that are actively traded? Yes. Leave onlyTraded enabled to drop products with no open orders.

What is in the buy and sell summaries? Each tier of the order book with the amount available, the price per unit, and the number of orders at that price.

Is this affiliated with Hypixel? No. It is an independent tool that reads the publicly documented Hypixel API.

How do I track prices over time? Schedule recurring runs and store each dataset as a snapshot.

🔌 Integrate with any app

Every run produces a structured dataset you can pull through the Apify API, webhooks, or any of the integrations above. Wire it into spreadsheets, dashboards, bots, or your own backend.

💡 Pro Tip: browse the complete ParseForge collection.

🆘 Need Help? Open our contact form

⚠️ Disclaimer: independent tool, not affiliated with Hypixel or Mojang. Only publicly available data is collected.