Discover/Fandom API
live

Fandom APIblox-fruits.fandom.com

Access Blox Fruits wiki data via API: fruit names, rarity tiers, types, money/Robux prices, image URLs, and full movesets with hotkey descriptions.

Endpoint health
verified 1d ago
get_fruit_details
get_fruits
2/2 passing latest checkself-healing
Endpoints
2
Updated
1d ago

What is the Fandom API?

This API exposes data from the Blox Fruits Fandom wiki across 2 endpoints, covering every fruit's name, rarity, type, in-game money and Robux prices, image URL, and detailed moveset. The get_fruits endpoint returns the full fruit catalog with optional rarity filtering, while get_fruit_details retrieves a single fruit's complete move list — including hotkey, move name, and description — along with all pricing and classification fields.

Try it
Filter fruits by rarity tier. Case-insensitive. When omitted, all fruits are returned.
api.parse.bot/scraper/78cf8155-3819-45d0-b799-92f840a94827/<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/78cf8155-3819-45d0-b799-92f840a94827/get_fruits?rarity=Common' \
  -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 blox-fruits-fandom-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: Blox Fruits Wiki SDK — list fruits, filter by rarity, get details."""
from parse_apis.blox_fruits_fandom_com_api import BloxFruits, Rarity, FruitType, FruitNotFound

client = BloxFruits()

# List all Mythical fruits — limit caps total items fetched
for fruit in client.fruit_summaries.list(rarity=Rarity.MYTHICAL, limit=5):
    print(fruit.name, fruit.rarity, fruit.type, fruit.money_price)

# Drill into one fruit's full details (moves, m1 info)
summary = client.fruit_summaries.list(rarity=Rarity.LEGENDARY, limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.type, detail.m1_enabled)
    for move in detail.moves[:3]:
        print(f"  [{move.key}] {move.name}: {move.description[:60]}")

# Typed error handling: catch a fruit that doesn't exist
try:
    first_fruit = client.fruit_summaries.list(limit=1).first()
    if first_fruit:
        full = first_fruit.details()
        print(full.name, full.image_url)
except FruitNotFound as exc:
    print(f"Fruit not found: {exc.fruit_name}")

print("exercised: fruit_summaries.list / details / FruitNotFound")
All endpoints · 2 totalmissing one? ·

Retrieves all available Blox Fruits with their name, rarity, type, in-game prices, and image URL. Results can be filtered by rarity. Returns fruits in their natural game ordering.

Input
ParamTypeDescription
raritystringFilter fruits by rarity tier. Case-insensitive. When omitted, all fruits are returned.
Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "fruits": "array of fruit summary objects with name, rarity, type, money_price, robux_price, image_url, wiki_url"
  },
  "sample": {
    "data": {
      "total": 41,
      "fruits": [
        {
          "name": "Rocket",
          "type": "Natural",
          "rarity": "Common",
          "wiki_url": "https://blox-fruits.fandom.com/wiki/Rocket",
          "image_url": "https://static.wikia.nocookie.net/roblox-blox-piece/images/c/cb/Rocket_Fruit.png/revision/latest?cb=20231027120039",
          "money_price": 5000,
          "robux_price": 50
        }
      ]
    },
    "status": "success"
  }
}

About the Fandom API

Fruit Catalog Endpoint

The get_fruits endpoint returns the full list of Blox Fruits in their natural game ordering. Each entry in the fruits array includes name, rarity, type, money_price, robux_price, image_url, and wiki_url. The optional rarity parameter filters results to a single tier (e.g. Legendary, Mythical, Common) and is case-insensitive. The response also includes a total count of matched fruits.

Per-Fruit Detail Endpoint

The get_fruit_details endpoint accepts a single required parameter, fruit_name, which must match the wiki page title exactly — including hyphens and capitalization (e.g. T-Rex, Kitsune, Dragon). The response returns the fruit's type, rarity, money_price, robux_price, image_url, wiki_url, and an m1_enabled field indicating basic attack availability. The moves array lists every ability with its key (hotkey), name, and description, giving a full picture of the fruit's combat kit.

Data Coverage and Quirks

Prices are returned as integers or null — a null money_price typically indicates the fruit is not purchasable with in-game Beli, and a null robux_price means it has no Robux purchase option. Fruit names are case-sensitive inputs; submitting dragon instead of Dragon will not resolve correctly. The wiki reflects community-maintained data, so field completeness varies slightly between fruits depending on how thoroughly each wiki page has been edited.

Reliability & maintenanceVerified

The Fandom API is a managed, monitored endpoint for blox-fruits.fandom.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when blox-fruits.fandom.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 blox-fruits.fandom.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
1d ago
Latest check
2/2 endpoints 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
  • Build a fruit comparison tool that filters by rarity tier using the rarity param and displays money_price and robux_price side by side.
  • Generate a Discord bot command that looks up any fruit's full moveset via get_fruit_details and returns hotkeys and descriptions.
  • Create a budget guide showing which fruits are available for in-game Beli by filtering for non-null money_price values.
  • Populate a game wiki mirror or fan site with up-to-date fruit images using the image_url field from get_fruits.
  • Build a tier-list UI that groups all fruits by rarity and type using the catalog endpoint's structured output.
  • Develop a move-reference sheet for a specific fruit by fetching its moves array with key bindings and ability descriptions.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Blox Fruits Fandom have an official developer API?+
No. The Blox Fruits Fandom wiki does not offer a structured developer API for game-specific data like fruit prices, rarity tiers, or movesets. Fandom does expose a general MediaWiki API for page content, but it does not return the structured fields this API provides.
What does the `rarity` filter in `get_fruits` accept, and does it affect result ordering?+
The rarity parameter accepts any rarity tier string (e.g. Common, Uncommon, Rare, Legendary, Mythical) and is case-insensitive. Filtered results retain the natural in-game ordering; only the matched tier is returned. The total field in the response reflects the filtered count.
Does the API cover fruit trading prices or current market values?+
No. The API exposes the fixed in-game money_price and robux_price from the wiki — player-to-player trading values and demand tiers are not included. You can fork this API on Parse and revise it to add an endpoint pulling from community trading resources.
What happens if a fruit has no in-game Beli price?+
money_price is returned as null for fruits that cannot be purchased with Beli. Similarly, robux_price is null when no Robux purchase exists. Both fields are integers when a price is available.
Does the API include fruit awakening details or stat values like damage multipliers?+
Not currently. The API covers base move names, hotkeys, and descriptions via the moves array, along with rarity, type, and pricing. Awakening-specific moves and numeric stat values are not included as separate fields. You can fork this API on Parse and revise it to add an endpoint targeting awakening move data.
Page content last updated . Spec covers 2 endpoints from blox-fruits.fandom.com.
Related APIs in EntertainmentSee all →
store.steampowered.com API
Search Steam Store listings, fetch featured categories (specials, top sellers, new releases), and retrieve app details and user reviews by Steam AppID.
store.epicgames.com API
store.epicgames.com API
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
poe.ninja API
Access real-time Path of Exile economy data from poe.ninja, including item prices, currency exchange rates, divination card values, market trends, and build statistics by class.
justwatch.com API
Search for movies and TV shows, retrieve streaming availability and detailed metadata, browse trending content, and discover similar titles — all via JustWatch.
rottentomatoes.com API
Search for movies and TV shows, get detailed information like ratings and reviews, and browse curated collections to discover what to watch. Access comprehensive Rotten Tomatoes data including critic and audience scores, plot details, and user reviews all in one place.
timeout.com API
Discover restaurants, events, attractions, and city guides across multiple locations with the Time Out API. Search for things to do, browse upcoming events and movies, explore new restaurant openings, find hotels, and access curated content like Time Out Market recommendations and cultural listings.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.