Marketplace
No threads yet
Live

search_cards_packs_sets_profiles

rip.fun

Returns full-text matches across cards, packs, sets, and user profiles from https://rip.fun, preserving every non-empty record field.

Parameters2
Runs9
Updated1d ago
Operational9 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 search_cards_packs_sets_profiles?

Returns full-text matches across cards, packs, sets, and user profiles from https://rip.fun, preserving every non-empty record field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.

Response

{
  "sets": [
    {}
  ],
  "cards": [
    {}
  ],
  "limit": 0,
  "packs": [
    {}
  ],
  "query": "<string>",
  "counts": {},
  "profiles": [
    {}
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b659f50e-333f-49b1-ac02-f51f09a85092/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b659f50e-333f-49b1-ac02-f51f09a85092",
    "variables": {
        "query": "pikachu",
        "limit": 5
    }
}'

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="b659f50e-333f-49b1-ac02-f51f09a85092") — the "search_cards_packs_sets_profiles" function, which returns full-text matches across cards, packs, sets, and user profiles from https://rip.fun, preserving every non-empty record field..

It takes query (str), limit (int). Return the result as structured JSON.