# Blox Fruits Fandom — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access comprehensive information about every Blox Fruit, including their names, rarity levels, types, in-game prices, images, and detailed move sets. Look up specific fruit details to compare stats and abilities before deciding which ones to pursue in your gameplay.

**Category:** Entertainment | **Website:** [blox-fruits.fandom.com/wiki/Blox_Fruits](https://blox-fruits.fandom.com/wiki/Blox_Fruits) | **Docs:** [parse.bot/marketplace/7dffc8b3-842e-4c10-a5df-dfb4cd8d3f6e/blox-fruits-fandom-com-api](https://parse.bot/marketplace/7dffc8b3-842e-4c10-a5df-dfb4cd8d3f6e/blox-fruits-fandom-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-blox-fruits-fandom-com-api-7dffc8b3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fruit_details

Retrieves detailed information about a specific Blox Fruit by its exact name, including its full moveset with descriptions, rarity, type, prices, and image URL. Each move lists its hotkey, name, and description. A separate fetch per fruit.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `fruit_name` | string | Yes | Exact name of the Blox Fruit (case-sensitive, e.g. 'Dragon', 'T-Rex', 'Kitsune'). Must match a wiki page title. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blox-fruits-fandom-com-api-7dffc8b3/get_fruit_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fruit_name":"<string>"}'
```

### get_fruits

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `rarity` | string | No | Filter fruits by rarity tier. Case-insensitive. When omitted, all fruits are returned. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blox-fruits-fandom-com-api-7dffc8b3/get_fruits \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"rarity":"<string>"}'
```
