get_rulings
Retrieve official rulings for Magic: The Gathering cards using Scryfall or Oracle IDs. Obtain detailed rulings, including publication dates and comments, directly from the Scryfall API.
Instructions
Retrieve official rulings for a specified card by Scryfall ID or Oracle ID. Returns an array of rulings. Each ruling has a 'published_at' date and a 'comment' field.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | A Scryfall ID or Oracle ID. Example: 'c09c71fb-7acb-4ffb-a47b-8961a0cf4990' |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "A Scryfall ID or Oracle ID. Example: 'c09c71fb-7acb-4ffb-a47b-8961a0cf4990'",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}