Marketplace
No threads yet
Live

search_card_images

moxfield.com

Searches Magic: The Gathering cards on https://moxfield.com by card name or Scryfall syntax and returns paginated 488x680 WebP image URLs, separate physical face images, total matches, and all non-empty card metadata exposed by Moxfield.

Parameters2
Runs10
Updated10d ago
Operational10 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_card_images?

Searches Magic: The Gathering cards on https://moxfield.com by card name or Scryfall syntax and returns paginated 488x680 WebP image URLs, separate physical face images, total matches, and all non-empty card metadata exposed by Moxfield. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "cards": [
    {}
  ],
  "query": "<string>",
  "has_more": true,
  "total_cards": 0,
  "page_capacity": 0,
  "cards_returned": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7185e2ba-282b-4084-8716-625b6c7a806e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7185e2ba-282b-4084-8716-625b6c7a806e",
    "variables": {
        "query": "Lightning Bolt",
        "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="7185e2ba-282b-4084-8716-625b6c7a806e") — the "search_card_images" function, which searches Magic: The Gathering cards on https://moxfield.com by card name or Scryfall syntax and returns paginated 488x680 WebP image URLs, separate physical face images, total matches, and all non-empty card metadata exposed by Moxfield..

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