A specific printing of a Magic: The Gathering card
any
Any valid record key
Properties
artist
string
Optional
Artist name
borderColor
string
Optional
Border color
black, white, borderless, silver, goldcard
string
at-uri
Required
AT URI reference to the card record
collectorNumber
string
Required
Collector number within the set
createdAt
string
datetime
Optional
When this record was created
digital
boolean
Optional
Whether this is a digital-only card
finishes
array
of
string
Optional
Available finishes, e.g. ['nonfoil', 'foil', 'etched']
flavorText
string
Optional
Flavor text
foil
boolean
Optional
Available in foil
frame
string
Optional
Card frame version, e.g. '2015', '1993'
fullArt
boolean
Optional
Whether this is a full-art card
games
array
of
string
Optional
Games this printing exists in, e.g. ['paper', 'mtgo', 'arena']
illustrationId
string
Optional
Scryfall illustration_id - unique per artwork
imageUris
ref
#imageUris
Optional
URLs to card images
nonfoil
boolean
Optional
Available in non-foil
promo
boolean
Optional
Whether this is a promotional printing
rarity
string
Optional
Card rarity
common, uncommon, rare, mythic, special, bonusreleasedAt
string
datetime
Optional
Release date
reprint
boolean
Optional
Whether this is a reprint
scryfallId
string
Required
Scryfall id - unique per printing
setCode
string
Required
Set code, e.g. 'msc', 'lea'
setName
string
Optional
Full set name, e.g. 'Marvel Super Heroes Commander'
setType
string
Optional
Set type, e.g. 'commander', 'core', 'expansion'
textless
boolean
Optional
Whether this is a textless printing
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"card",
"scryfallId",
"setCode",
"collectorNumber"
],
"properties": {
"card": {
"type": "string",
"format": "at-uri",
"description": "AT URI reference to the card record"
},
"foil": {
"type": "boolean",
"description": "Available in foil"
},
"frame": {
"type": "string",
"description": "Card frame version, e.g. '2015', '1993'"
},
"games": {
"type": "array",
"items": {
"type": "string"
},
"description": "Games this printing exists in, e.g. ['paper', 'mtgo', 'arena']"
},
"promo": {
"type": "boolean",
"description": "Whether this is a promotional printing"
},
"artist": {
"type": "string",
"description": "Artist name"
},
"rarity": {
"type": "string",
"description": "Card rarity",
"knownValues": [
"common",
"uncommon",
"rare",
"mythic",
"special",
"bonus"
]
},
"digital": {
"type": "boolean",
"description": "Whether this is a digital-only card"
},
"fullArt": {
"type": "boolean",
"description": "Whether this is a full-art card"
},
"nonfoil": {
"type": "boolean",
"description": "Available in non-foil"
},
"reprint": {
"type": "boolean",
"description": "Whether this is a reprint"
},
"setCode": {
"type": "string",
"description": "Set code, e.g. 'msc', 'lea'"
},
"setName": {
"type": "string",
"description": "Full set name, e.g. 'Marvel Super Heroes Commander'"
},
"setType": {
"type": "string",
"description": "Set type, e.g. 'commander', 'core', 'expansion'"
},
"finishes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Available finishes, e.g. ['nonfoil', 'foil', 'etched']"
},
"textless": {
"type": "boolean",
"description": "Whether this is a textless printing"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this record was created"
},
"imageUris": {
"ref": "#imageUris",
"type": "ref",
"description": "URLs to card images"
},
"flavorText": {
"type": "string",
"description": "Flavor text"
},
"releasedAt": {
"type": "string",
"format": "datetime",
"description": "Release date"
},
"scryfallId": {
"type": "string",
"description": "Scryfall id - unique per printing"
},
"borderColor": {
"type": "string",
"description": "Border color",
"knownValues": [
"black",
"white",
"borderless",
"silver",
"gold"
]
},
"illustrationId": {
"type": "string",
"description": "Scryfall illustration_id - unique per artwork"
},
"collectorNumber": {
"type": "string",
"description": "Collector number within the set"
}
}
},
"description": "A specific printing of a Magic: The Gathering card"
}