Bulk Data Files
TCG Land is publishing a set of different types of bulk data files containing prices info.
This data is published in a daily basis. The publishing time is not exact, and it depends on the duration of few internal
processes.
In any case, you can be sure that you will be able to find the latest data published at 9am UTC
(3am CST/GMT-6
).
The data is exposed on three different formats:
Bulk Data CSV file
Endpoint: https://api.tcg.land/bulkdata/v1/mtg_prices-latest.csv
Please, use the header of the CSV file to know the location of every column. We are pretty sure that the order will not change in the same version, but it’s a good practice to use the header to know the location of every column. On this way, in the unlikely case of a change in the order of the columns, you will not have problems.
Format:
Name | Type | Required | Description |
---|---|---|---|
set_id | string | yes | Card’s set code. Ex. 10e |
card_id | string | yes | Card’s code. Could contains non-numeric characters, such as letters or ★. Ex. 48★ |
language | string | yes | Language of the card. At the moment, only supported: es , en , ph and ja |
finish | string | yes | Finish of the card. Supported values: foil , nonfoil , etched |
tcgland_id | string | yes | Unique ID/SKU for this card in TCG Land’s database. Ex. mtg_single_10e_48★_en |
scryfall_id | string | yes | Unique ID for this card in Scryfall’s database. |
oracle_id | string | no | Common Oracle ID for this card in Scryfall’s database. |
url | string | yes | URL to the card on TCG Land website. Ex. https://www.tcg.land/es/magic/productos/single/en/10e/tenth-edition/48 |
timestamp | date | yes | Update time in ISO 8601 format. Ex. 2024-05-21T07:53:56Z |
price_mxn | float | yes | Price in Mexican’s Peso ($MXN currency). |
price_usd | float | yes | Price in US Dollars ($USD currency). |
Request Example:
Bulk Data JSON file
It contains all prices in a JSON array. Following the json schema used to generate the file, were you can find the description, type, etc.
Endpoint: https://api.tcg.land/bulkdata/v1/mtg_prices-latest.json
Schema:
Request Example:
Bulk Data JSON Lines file
It contains all prices in a JSON Lines file. A Json Line file contains one json per line instead a JSON array. Every line contains a JSON object equivalent to an element of the JSON array in the JSON bulk data file.
Following the json schema used to generate every line of the file, were you can find the description, type, etc.
Endpoint: https://api.tcg.land/bulkdata/v1/mtg_prices-latest.jsonl
Schema:
Request Example: