Marketplace
No threads yet
Live

list_expansion_cards

rip.fun

Returns cards in a https://rip.fun expansion set, sorted by descending market value, with pagination, attacks, abilities, set metadata, inventory and pricing fields.

Parameters3
Runs6
Updated1d ago
Operational6 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 list_expansion_cards?

Returns cards in a https://rip.fun expansion set, sorted by descending market value, with pagination, attacks, abilities, set metadata, inventory and pricing fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass series_slug, set_id, page and get the result back without maintaining a scraper.

Response

{
  "cards": [
    {}
  ],
  "stats": {},
  "set_id": "<string>",
  "expansion": {},
  "sorted_by": "<string>",
  "pagination": {},
  "source_url": "<string>",
  "series_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/608e5da3-628e-498d-ab91-3a33cc9bd8ff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "608e5da3-628e-498d-ab91-3a33cc9bd8ff",
    "variables": {
        "series_slug": "scarlet-violet",
        "set_id": "sv4pt5",
        "page": 1
    }
}'

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="608e5da3-628e-498d-ab91-3a33cc9bd8ff") — the "list_expansion_cards" function, which returns cards in a https://rip.fun expansion set, sorted by descending market value, with pagination, attacks, abilities, set metadata, inventory and pricing fields..

It takes series_slug (str), set_id (str), page (int). Return the result as structured JSON.