get_prices_by_id
Retrieve Magic: The Gathering card pricing data in multiple currencies by providing the Scryfall ID. Returns JSON with USD, USD foil, EUR, and tix values.
Instructions
Retrieve price information for a card by its Scryfall ID. Returns JSON with usd, usd_foil, eur, tix, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Scryfall ID of the card |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Scryfall ID of the card",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}