Discover/Fruityblox API
live

Fruityblox APIfruityblox.com

Get live Blox Fruits dealer stock from fruityblox.com. Returns fruit names, types, Beli prices, Robux prices, and images for Normal and Mirage dealers.

This API takes change requests — .
Endpoint health
verified 2h ago
get_stock
1/1 passing latest checkself-healing
Endpoints
1
Updated
2h ago

What is the Fruityblox API?

The fruityblox.com API exposes 1 endpoint — get_stock — that returns the current live inventory for both the Normal and Mirage fruit dealers in Blox Fruits. Each response includes up to 8 fields per fruit object: name, type classification, Beli price, Robux price, and image URL, split across two arrays representing each dealer. Normal dealer stock rotates every 4 hours; Mirage dealer stock rotates every 2 hours.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/e534d388-6640-4c19-b9b6-b2ba12930793/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e534d388-6640-4c19-b9b6-b2ba12930793/get_stock' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace fruityblox-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: FruityBlox SDK — current Blox Fruits dealer stock."""
from parse_apis.fruityblox_com_api import FruityBlox, ParseError

client = FruityBlox()

# Fetch the current live dealer stock (rotates every few hours).
try:
    stock = client.stocks.get()
except ParseError as e:
    print(f"Could not fetch stock: {e.code}")
    raise

# Show what the Normal dealer is selling right now.
print("=== Normal Dealer ===")
for fruit in stock.normal:
    print(f"  {fruit.name} ({fruit.type}) — {fruit.price_beli:,} Beli / {fruit.price_robux} Robux")

# Show the Mirage dealer's current inventory.
print("=== Mirage Dealer ===")
for fruit in stock.mirage:
    print(f"  {fruit.name} ({fruit.type}) — {fruit.price_beli:,} Beli / {fruit.price_robux} Robux")

print("exercised: stocks.get")
All endpoints · 1 totalmissing one? ·

Returns the current live Blox Fruits stock for both the Normal and Mirage fruit dealers. The Normal dealer rotates every 4 hours and the Mirage dealer every 2 hours. Each fruit includes its name, type classification, Beli price, Robux price, and image URL. No parameters are needed; the endpoint always returns the current stock.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "mirage": "Array of fruit objects currently in the Mirage dealer's stock",
    "normal": "Array of fruit objects currently in the Normal dealer's stock"
  },
  "sample": {
    "data": {
      "mirage": [
        {
          "name": "Rocket",
          "type": "Natural",
          "image_url": "https://fruityblox.com/images/fruits/rocket.webp",
          "price_beli": 5000,
          "price_robux": 50
        },
        {
          "name": "Spin",
          "type": "Natural",
          "image_url": "https://fruityblox.com/images/fruits/spin.webp",
          "price_beli": 7500,
          "price_robux": 75
        },
        {
          "name": "Blade",
          "type": "Natural",
          "image_url": "https://fruityblox.com/images/fruits/blade.webp",
          "price_beli": 30000,
          "price_robux": 100
        }
      ],
      "normal": [
        {
          "name": "Rocket",
          "type": "Natural",
          "image_url": "https://fruityblox.com/images/fruits/rocket.webp",
          "price_beli": 5000,
          "price_robux": 50
        },
        {
          "name": "Spin",
          "type": "Natural",
          "image_url": "https://fruityblox.com/images/fruits/spin.webp",
          "price_beli": 7500,
          "price_robux": 75
        },
        {
          "name": "Eagle",
          "type": "Beast",
          "image_url": "https://fruityblox.com/images/fruits/eagle.webp",
          "price_beli": 550000,
          "price_robux": 975
        }
      ]
    },
    "status": "success"
  }
}

About the Fruityblox API

What get_stock Returns

The get_stock endpoint takes no input parameters and returns a single JSON object with two top-level arrays: normal and mirage. Each array contains fruit objects currently listed by that dealer. Every fruit object includes the fruit's name, its type classification (e.g. Natural, Elemental, Beast), a Beli price, a Robux price, and an image URL suitable for display in applications or bots.

Dealer Rotation Timing

The normal array reflects the Normal dealer's inventory, which refreshes on a 4-hour cycle. The mirage array reflects the Mirage dealer, which rotates every 2 hours. Because stock changes on these fixed schedules, polling the endpoint around rotation times will capture fresh inventory as soon as it updates.

Data Coverage

All fruit entries include both currency prices — Beli and Robux — which lets you build features for players comparing in-game currency costs versus premium currency costs. The image URL field points to fruit artwork that can be embedded directly in Discord bots, web dashboards, or mobile apps tracking current availability.

Reliability & maintenanceVerified

The Fruityblox API is a managed, monitored endpoint for fruityblox.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fruityblox.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official fruityblox.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Discord bot that pings a server channel whenever a rare fruit appears in the Normal or Mirage dealer stock
  • Web tracker that displays current Beli and Robux prices for all fruits available from both dealers
  • Price history logger that records normal and mirage inventory snapshots every rotation cycle
  • Mobile app widget showing the active dealer stock with fruit images from the image URL field
  • Alert system that notifies players when a specific fruit type (e.g. Beast) is in stock
  • Spreadsheet automation that logs fruit name, type, and prices at each 2-hour and 4-hour rotation
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does fruityblox.com have an official developer API?+
Fruityblox.com does not publish an official public developer API or documented developer program. This Parse API provides structured access to the live stock data displayed on the fruityblox.com stock page.
What does the get_stock endpoint return for each fruit?+
Each fruit object in the normal and mirage arrays includes the fruit's name, type classification, Beli price, Robux price, and image URL. The two arrays are always returned together in a single response — there is no parameter to request only one dealer's stock.
Does the API return stock history or previous rotation data?+
No. The get_stock endpoint returns only the current live inventory for both dealers at the time of the request. It does not expose historical rotation records or past stock entries. You can fork this API on Parse and revise it to add a persistence layer that logs each rotation snapshot.
Can I filter results by fruit type or price range?+
The endpoint returns the full current stock for both dealers without server-side filtering. Type and price fields are present in each fruit object, so client-side filtering by type or Beli/Robux price is straightforward. If you need server-side filtering as a dedicated endpoint, you can fork this API on Parse and revise it to add filtered query parameters.
How fresh is the stock data relative to actual in-game rotations?+
The API reflects the live state of the fruityblox.com stock page, which tracks in-game dealer rotations. Normal dealer stock rotates every 4 hours and Mirage dealer stock every 2 hours. There may be a brief lag between an in-game rotation and when the data visible on the page updates.
Page content last updated . Spec covers 1 endpoint from fruityblox.com.
Related APIs in EntertainmentSee all →
bloxvalues.net API
Check live dealer inventory and community-sourced trade values for Blox Fruits items, then instantly evaluate any trade to see if it's a win, fair deal, or loss. Get real-time pricing data and automatic trade assessments to make smarter in-game trading decisions.
bloxfruitsvalues.com API
Check real-time trade values and demand ratings for every fruit in Blox Fruits to make informed trading decisions. Get comprehensive pricing data and item metadata directly from bloxfruitsvalues.com to optimize your in-game trades.
rolimons.com API
Access real-time Roblox limited item market data, search and view player profiles and inventories, track recent trade advertisements, browse top games and player counts, and read the latest site articles — all through a single API.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
bloomberg.com API
Track stock indices, commodities, currencies, and bonds in real-time, while monitoring market movers and staying updated with the latest financial news. Get comprehensive Bloomberg market data to make informed investment decisions across multiple asset classes.
hobbydb.com API
Access data from hobbydb.com.
stockx.com API
Search and browse StockX products to access detailed pricing, market trends, and historical sales data all in one place. Compare sneaker and streetwear prices across listings, track price history, and discover product information to stay informed on the resale market.
rusthelp.com API
Track current and historical weekly Rust item store listings with complete details including images, prices, stats, and tags to plan your purchases and monitor price trends. Check specific store snapshots by ID to compare what items were available and priced at any point in time.