Live
get_pack_price_history
rip.funReturns historical aggregated retail and market price records for a booster pack from https://rip.fun, with TCGPlayer source prices over a selectable time range.
Parameters2
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_pack_price_history?
Returns historical aggregated retail and market price records for a booster pack from https://rip.fun, with TCGPlayer source prices over a selectable time range. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass pack_id, time_range and get the result back without maintaining a scraper.
Response
{
"pack_id": "<string>",
"source_url": "<string>",
"time_range": "<string>",
"price_points": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/28f1ba8f-d634-428f-ab53-7518f85267d2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "28f1ba8f-d634-428f-ab53-7518f85267d2",
"variables": {
"pack_id": "sv3pt5-1bp",
"time_range": "30d"
}
}'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="28f1ba8f-d634-428f-ab53-7518f85267d2") — the "get_pack_price_history" function, which returns historical aggregated retail and market price records for a booster pack from https://rip.fun, with TCGPlayer source prices over a selectable time range.. It takes pack_id (str), time_range (str). Return the result as structured JSON.