Live
get_market_trends
futbin.comReturns console and PC market index time series, current index summaries, and top mover players from https://futbin.com.
Parameters1
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_market_trends?
Returns console and PC market index time series, current index summaries, and top mover players from https://futbin.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year and get the result back without maintaining a scraper.
Response
{
"year": 0,
"series": [
{
"name": "<string>",
"points": [
{
"value": 0,
"timestamp_ms": 0
}
],
"platform": "<string>",
"timeframe": "<string>"
}
],
"summaries": [
{}
],
"index_name": "<string>",
"source_url": "<string>",
"top_movers": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/6362b9f3-310c-4bc8-b130-ffc8d3343d67/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6362b9f3-310c-4bc8-b130-ffc8d3343d67",
"variables": {
"year": 26
}
}'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="6362b9f3-310c-4bc8-b130-ffc8d3343d67") — the "get_market_trends" function, which returns console and PC market index time series, current index summaries, and top mover players from https://futbin.com.. It takes year (int). Return the result as structured JSON.