BloxValues Trade Assessment
bloxvalues.netEvaluates a proposed trade with live item values from https://bloxvalues.net and returns a Win, Fair, or Lose verdict plus totals and complete per-item value, demand, and trend details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is BloxValues Trade Assessment?
Evaluates a proposed trade with live item values from https://bloxvalues.net and returns a Win, Fair, or Lose verdict plus totals and complete per-item value, demand, and trend details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass your_items, their_items and get the result back without maintaining a scraper.
Response
{
"verdict": "<string>",
"source_url": "<string>",
"your_items": [
{}
],
"your_total": 0,
"perspective": "<string>",
"their_items": [
{}
],
"their_total": 0,
"value_difference": 0,
"threshold_percent": 0,
"difference_percent": 0,
"live_catalog_count": 0,
"matched_item_count": 0,
"absolute_difference": 0,
"catalog_last_updated": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f3bde224-6f9a-487c-9aa2-eb9f3bfcb20c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f3bde224-6f9a-487c-9aa2-eb9f3bfcb20c",
"variables": {
"your_items": [{"name": "Dough", "quantity": 1, "value_type": "regular"}],
"their_items": [{"name": "Control", "quantity": 1, "value_type": "regular"}]
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="f3bde224-6f9a-487c-9aa2-eb9f3bfcb20c") — the "BloxValues Trade Assessment" function, which evaluates a proposed trade with live item values from https://bloxvalues.net and returns a Win, Fair, or Lose verdict plus totals and complete per-item value, demand, and trend details.. It takes your_items (list[dict[str, str | int]]), their_items (list[dict[str, str | int]]). Return the result as structured JSON.