Hypixel SkyBlock Bazaar Prices Scraper
Pricing
from $3.00 / 1,000 results
Hypixel SkyBlock Bazaar Prices Scraper
Scrapes live Hypixel SkyBlock Bazaar product prices and returns each product as a flat row with buy and sell summaries, moving-week volume, and full order book depth.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
ParseForge
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
9 days ago
Last modified
Categories
Share
Hypixel SkyBlock Bazaar Prices Scraper
Scrape Hypixel SkyBlock Bazaar prices for any product, with live buy and sell orders, volume history, and computed margins. Get instant order book snapshots without the Hypixel API key or rate limits. Export to CSV, JSON, Excel, or XML.
The Hypixel SkyBlock Bazaar is the player-driven market where every item's price changes by the minute. The official Hypixel API requires an API key, has strict rate limits, and returns raw order data that you must clean yourself. This actor reads the public Bazaar endpoint directly, filters by product ID or trading activity, and returns each product as one flat row with its live buy and sell orders, moving volume, and computed margins.
| Who uses it | What they scrape Hypixel SkyBlock Bazaar for |
|---|---|
| SkyBlock flippers | Find items with the largest buy-sell spread to flip for profit |
| Market analysts | Track which products are moving this week and at what price |
| Discord bot developers | Feed live Bazaar prices into price-check commands |
| Data journalists | Report on the in-game economy and item price trends |
What it does
This Actor collects Hypixel SkyBlock Bazaar product prices and order book data, and returns each product as a flat row with buy and sell summaries, volume history, and computed margins.
- ๐ฆ Product IDs or auto-list: pass a list of IDs like ENCHANTED_DIAMOND or BOOSTER_COOKIE, or leave empty to auto-list products with live orders.
- ๐ Live order book: each row includes buy and sell summaries, moving week volume, and current buy and sell volume.
- ๐งฎ Computed margins: instant buy-sell spread and potential profit per flip, calculated from the live order book.
- ๐ Only traded filter: return only products that currently have at least one open buy or sell order.
- ๐ Sort by volume: order products by buy or sell volume, current or moving week, before applying the item cap.
Results export to CSV, JSON, Excel, or XML, or straight from the API.
What you can do with Hypixel SkyBlock Bazaar data
๐ฐ Find flips by margin.
A SkyBlock flipper runs the actor with onlyTraded=true and sortBy=buyMovingWeek, then filters the output for products where the sell price is at least 20% above the buy price.
๐ Track weekly movers.
A market analyst runs the actor daily with sortBy=sellMovingWeek and maxItems=50 to see which products had the most sell volume this week.
๐ค Power a price-check bot.
A Discord bot developer passes a list of product IDs and uses the returned rows to answer /price commands with live buy and sell prices.
๐ฐ Report on the economy.
A data journalist runs the actor weekly and compares moving week volume across products to write about which items are trending in the Bazaar.
Why choose this scraper
| What you get | |
|---|---|
| No API key | Reads the public Bazaar endpoint directly, no Hypixel developer account needed |
| Flat rows | Every product comes back as one row, ready for CSV, JSON, Excel, or XML |
| Live order book | Buy and sell summaries with moving week volume and current volume |
| Computed margins | Instant buy-sell spread and potential profit per flip |
How it compares
No other Store actor targets Hypixel SkyBlock Bazaar the same way, so the honest comparison is with the alternatives teams actually weigh.
| Hypixel SkyBlock Bazaar Prices Scraper | Build it in-house | By hand | |
|---|---|---|---|
| Setup | Run it now, zero config | Days of engineering | None, but hours per pull |
| When Hypixel SkyBlock Bazaar changes | Maintained for you | You fix it | You re-learn the page |
| Proxies, retries, anti-bot | Built in | Your problem | Browser only |
| Output | Fixed JSON schema, CSV/Excel export | Whatever you build | Copy-paste |
| Cost | Pay per result | Engineering time | Analyst hours |
Configure the run
Drive the Actor from specific product IDs or let it auto-list products, then sort by buy or sell volume and optionally keep only actively traded items. The Input tab lists every parameter.
A first run with the defaults:
{"productIds": [],"maxItems": 10}
A larger pull:
{"productIds": [],"maxItems": 200}
Pricing
Pay-per-result: $0.005 per result collected. You pay only for the results written to your dataset.
| Results collected | Approximate cost |
|---|---|
| 100 results | $0.50 |
| 1,000 results | $5.00 |
| 10,000 results | $50.00 |
New Apify accounts start with $5 in free credit.
Free users
Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.
Run it
- Create a free Apify account with $5 in credit.
- Open the Hypixel SkyBlock Bazaar Prices Scraper.
- Set your inputs and any filters, then click Start.
- Export the results as CSV, Excel, JSON, or XML from the Dataset tab.
Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.
Use with AI agents (MCP)
Give an AI agent live access to Hypixel SkyBlock Bazaar through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:
$claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/hypixel-skyblock-bazaar-scraper"
Then prompt it in plain language to run the scraper and read back the results.
Troubleshooting
Why am I getting no results?
Check that onlyTraded is not filtering out all products. If you passed productIds, make sure the IDs are spelled correctly. Try leaving productIds empty and setting onlyTraded=false to see all products.
Why is my run slow?
The actor fetches the full Bazaar endpoint once, then filters locally. If you set maxItems very high, the output dataset will be large. Lower maxItems or use productIds to limit the data.
Why do I see an error about the Hypixel API?
The public Bazaar endpoint can occasionally be slow or return a temporary error. Retry the run after a minute. If it persists, check the Hypixel status page.
Why are some products missing from the output?
If onlyTraded is enabled, products with no open buy or sell orders are excluded. Disable onlyTraded to include all products, even those with zero orders.
FAQ
| Question | Answer |
|---|---|
| Do I need a Hypixel API key? | No. This actor reads the public Bazaar endpoint directly, so no API key or developer account is required. |
| Can I scrape only specific products? | Yes. Pass a list of product IDs in the productIds field, such as ENCHANTED_DIAMOND or BOOSTER_COOKIE. Leave it empty to auto-list products. |
| What does onlyTraded do? | When enabled, only products that currently have at least one open buy or sell order are returned. This filters out items with no active market. |
| How is the data sorted? | Use the sortBy field to order products by buy volume (moving week), sell volume (moving week), buy volume (current), sell volume (current), or product ID. |
| What is the maximum number of products I can get? | The maxItems field lets you set a cap from 1 to 1,000,000 products per run. The default is 10. |
| What export formats are supported? | You can export the results as CSV, JSON, Excel, or XML from the Apify dataset. |
| How often should I run this actor? | Bazaar prices change every minute. For live flipping, run it every few minutes. For trend analysis, once per hour or day is enough. |
| Does this actor return historical price data? | No, it returns the current order book snapshot. For historical data, schedule regular runs and store the results. |
| Can I use this for commercial purposes? | Yes, the data is public and the actor output can be used in your own tools, bots, or dashboards. |
| What is a product ID? | A product ID is the internal Hypixel identifier for an item, like ENCHANTED_DIAMOND or INK_SACK:3. You can find them in the Hypixel SkyBlock wiki or by running the actor without productIds. |
Related actors
Browse the full ParseForge collection for more scrapers.
๐ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.
โ ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Hypixel Inc. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.
