Marketplace
No threads yet
Live

get_blox_fruits_dealer_inventories

bloxvalues.net

Returns the current live Normal and Mirage Blox Fruits dealer inventories from https://bloxvalues.net. Each fruit includes its Beli price, Robux cost, image, dealer type, and item URL.

Parameters0
Runs8
Updated10d ago
Operational8 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_blox_fruits_dealer_inventories?

Returns the current live Normal and Mirage Blox Fruits dealer inventories from https://bloxvalues.net. Each fruit includes its Beli price, Robux cost, image, dealer type, and item URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "mirage": [
    {
      "url": "<string>",
      "name": "<string>",
      "type": "<string>",
      "image": "<string>",
      "price": 0,
      "robux": 0
    }
  ],
  "normal": [
    {
      "url": "<string>",
      "name": "<string>",
      "type": "<string>",
      "image": "<string>",
      "price": 0,
      "robux": 0
    }
  ],
  "mirage_count": 0,
  "normal_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/70d96077-a550-4300-b19b-f81d5f9f623c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "70d96077-a550-4300-b19b-f81d5f9f623c",
    "variables": {}
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="70d96077-a550-4300-b19b-f81d5f9f623c") — the "get_blox_fruits_dealer_inventories" function, which returns the current live Normal and Mirage Blox Fruits dealer inventories from https://bloxvalues.net. Each fruit includes its Beli price, Robux cost, image, dealer type, and item URL..

It takes no parameters. Return the result as structured JSON.