Blox Fruits Values APIbloxfruitsvalues.com ↗
Get trade values, demand ratings, rarity, and image URLs for all 42 Blox Fruits items. Updated daily from bloxfruitsvalues.com.
What is the Blox Fruits Values API?
The Blox Fruits Values API exposes trade data for all 42 fruits tracked on bloxfruitsvalues.com through a single endpoint, get_all_fruits. Each response includes current trade values, demand ratings, rarity classifications, last-updated timestamps, and image URLs, sorted by value descending. This gives developers a complete snapshot of the fruit trading market in one call without any input parameters.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/66e0bf14-56ac-462d-88c7-8469b6d631e9/get_all_fruits' \ -H 'X-API-Key: $PARSE_API_KEY'
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 bloxfruitsvalues-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: bloxfruitsvalues_com_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.bloxfruitsvalues_com_api import BloxFruitsValues, ParseError
client = BloxFruitsValues()
# List all fruits, capped at 3 for demonstration
for fruit in client.fruits.list(limit=3):
print(fruit.name, fruit.trade_value, fruit.rarity, fruit.demand)
# Get the first fruit for detailed inspection
top_fruit = client.fruits.list(limit=1).first()
try:
print(top_fruit.name, top_fruit.trade_value, top_fruit.last_updated, top_fruit.image_url)
except ParseError as e:
print(f"error: {e}")
print("exercised: fruits.list")
Returns all Blox Fruits with their current regular trade values, demand ratings, rarity, last updated timestamp, and image URLs. Updated daily. Results are returned as a single page of all 42 fruits sorted by value descending.
No input parameters required.
{
"type": "object",
"fields": {
"total": "total number of fruits returned",
"fruits": "array of fruit objects with trade value data"
},
"sample": {
"data": {
"total": 42,
"fruits": [
{
"name": "West Dragon",
"demand": 10,
"rarity": "Mythical",
"image_url": "https://i.postimg.cc/7LfBxxs8/West-Dragon.png",
"trade_value": 5550000000,
"last_updated": "2026-07-17T19:28:52.000Z"
},
{
"name": "East Dragon",
"demand": 10,
"rarity": "Mythical",
"image_url": "https://i.postimg.cc/gkzHzzjS/East-Dragon.png",
"trade_value": 5040000000,
"last_updated": "2026-07-17T19:23:17.000Z"
}
]
},
"status": "success"
}
}About the Blox Fruits Values API
What the API Returns
The get_all_fruits endpoint returns a flat array of all 42 fruits currently tracked by bloxfruitsvalues.com. The top-level response includes a total field confirming the count, and a fruits array where each object carries the fruit's trade value, demand rating, rarity tier, last updated timestamp, and image URL. Results are pre-sorted by value descending, so the highest-value fruits appear first.
Response Fields
Each fruit object in the fruits array contains the data points most relevant to trading decisions: the numeric trade value used on the bloxfruitsvalues.com calculator, a demand rating indicating how actively the fruit is traded, a rarity label, a timestamp showing when that fruit's data was last refreshed, and an image URL for display purposes. There are no input parameters — the endpoint always returns the full set.
Data Freshness and Coverage
Values are updated daily, reflecting the community-driven valuations published on bloxfruitsvalues.com. The dataset covers all fruits in the game's current trading ecosystem as recognized by that site. Because the entire catalog is returned in a single response with no pagination, integrating the full dataset requires only one API call.
The Blox Fruits Values API is a managed, monitored endpoint for bloxfruitsvalues.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bloxfruitsvalues.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 bloxfruitsvalues.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a Blox Fruits trade calculator that compares fruit values side-by-side using the
trade_valuefield - Display a live fruit tier list ranked by rarity and demand rating in a Discord bot or web dashboard
- Alert users when a specific fruit's demand rating changes between daily refreshes
- Populate a trading tool that shows image thumbnails alongside current values using the image URL field
- Track historical value trends by storing daily snapshots of the
fruitsarray over time - Filter fruits by rarity tier to show which rare fruits are currently in high demand
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does bloxfruitsvalues.com have an official developer API?+
What does `get_all_fruits` return, and can I filter results by rarity or demand?+
How fresh is the trade value data?+
last_updated timestamp so you can see exactly when that fruit's data was last refreshed. Intraday price movements are not captured.Does the API cover accessories, game passes, or other tradeable items beyond fruits?+
Is individual fruit lookup by name or ID supported?+
get_all_fruits endpoint returns the full catalog in one call; there is no single-fruit lookup endpoint. You can fork this API on Parse and revise it to add a filtered endpoint that accepts a fruit name or identifier as a parameter.