Live
get_card_price_analysis
rip.funReturns 24-hour and 7-day price changes, the market analysis reason and good-buy score for a card ID from https://rip.fun.
Parameters1
Runs5
Updated1d 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_card_price_analysis?
Returns 24-hour and 7-day price changes, the market analysis reason and good-buy score for a card ID from https://rip.fun. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass card_id and get the result back without maintaining a scraper.
Response
{
"reason": "<string>",
"card_id": "<string>",
"source_url": "<string>",
"seven_day_change": 0,
"good_buy_percentage": 0,
"twenty_four_hour_change": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/238501c5-559c-4cfd-8a4a-6b9196e6dda6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "238501c5-559c-4cfd-8a4a-6b9196e6dda6",
"variables": {
"card_id": "sm0_ja-4"
}
}'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="238501c5-559c-4cfd-8a4a-6b9196e6dda6") — the "get_card_price_analysis" function, which returns 24-hour and 7-day price changes, the market analysis reason and good-buy score for a card ID from https://rip.fun.. It takes card_id (str). Return the result as structured JSON.