get https://api.tcgplayer.com/catalog/categories//printings
This endpoint returns all available printings associated with the specified category.
Returns all of the different printing options for a specific product line. For some products that means Foil and Normal, but other products can have more or fewer options.
{
"success": true,
"errors": [],
"results": [
{
"printingId": integer,
"name": "string",
"displayOrder": integer,
"modifiedOn": "datetime"
},
{
"printingId": integer,
"name": "string",
"displayOrder": integer,
"modifiedOn": "datetime"
}
]
}
/catalog/categories/1/printings
{
"success": true,
"errors": [],
"results": [
{
"printingId": 1,
"name": "Normal",
"displayOrder": 1,
"modifiedOn": "2013-04-03T11:43:38.8"
},
{
"printingId": 2,
"name": "Foil",
"displayOrder": 2,
"modifiedOn": "2013-04-03T11:43:38.8"
}
]
}
/catalog/categories/5/printings
{
"success": true,
"errors": [],
"results": [
{
"printingId": 13,
"name": "Normal",
"displayOrder": 1,
"modifiedOn": "2013-04-03T11:43:38.8"
}
]
}