Tarkov Market API
Flea market prices, trader prices and item data for Escape from Tarkov. Base url: https://api.tarkov-market.app/api/v1
API key
Auth
Pass your key in a header:
x-api-key: your_api_key
Or as a query parameter, if headers are inconvenient (browser, streaming bots, spreadsheets):
?x-api-key=your_api_key
Missing, unknown or disabled key → 401 { "error": "Access denied" }
Game modes
Every item endpoint exists in three game modes. The mode can be set either by a path prefix or by the mode parameter — both give the same answer:
Seasonal characters
Seasonal economy is scanned separately and it is young: an item has a flea price only after the scanner has seen it in the seasonal flea market, and avg24hPrice / diff24h fill in as seasonal price history accumulates. Fields that do not depend on the flea market — basePrice and the trader price — fall back to PVP values until the season gets its own game data dump.
No seasonal price yet looks like this (same item, same request, season mode):
{
"uid": "a7f7568c-61fb-437e-9f71-06e58aae26ba",
"name": "LEDX Skin Transilluminator",
"price": 0, // no seasonal flea price yet
"avg24hPrice": 0,
"diff24h": 0,
"updated": "", // never seen on the seasonal flea
"haveMarketData": false, // do not use price for this item
"basePrice": 970000, // not flea data — same as PVP
"traderName": "Therapist",
"traderPrice": 494700
}Endpoints
https://api.tarkov-market.app/api/v1/item?q=ledx&x-api-key=your_api_key
curl -H "x-api-key: your_api_key" "https://api.tarkov-market.app/api/v1/item?q=ledx"
Response example
[
{
"uid": "a7f7568c-61fb-437e-9f71-06e58aae26ba",
"name": "LEDX Skin Transilluminator",
"bannedOnFlea": false,
"haveMarketData": true,
"tags": ["Barter"],
"shortName": "LEDX",
"price": 550000,
"basePrice": 970000,
"avg24hPrice": 598993,
"avg7daysPrice": 671670,
"traderName": "Therapist",
"traderPrice": 494700,
"traderPriceCur": "₽",
"traderPriceRub": 494700,
"updated": "2026-08-05T17:34:28.319Z",
"slots": 1,
"diff24h": -8.18,
"diff7days": -18.11,
"icon": "https://cdn.tarkov-market.app/images/items/a7f7568c-61fb-437e-9f71-06e58aae26ba_sm.png",
"link": "https://tarkov-market.com/item/ledx_skin_transilluminator",
"wikiLink": "https://escapefromtarkov.fandom.com/wiki/LEDX_Skin_Transilluminator",
"img": "https://cdn.tarkov-market.app/images/items/a7f7568c-61fb-437e-9f71-06e58aae26ba_sm.png",
"imgBig": "https://cdn.tarkov-market.app/images/items/ledx_skin_transilluminator_lg.png",
"bsgId": "5c0530ee86f774697952d952",
"isFunctional": true,
"reference": "https://www.patreon.com/tarkov_market"
}
]curl https://api.tarkov-market.app/api/v1/item \
-H "x-api-key: your_api_key" \
-H "Content-Type: application/json" \
-X POST --data '{"q":"AI-2急救组合","lang":"ch"}'Response example
[
{
"uid": "2335b619-c562-41da-962f-e7b5aba5d45c",
"name": "AI-2急救组合",
"shortName": "AI-2",
"tags": ["Meds"],
"price": 6900,
"basePrice": 4160,
"avg24hPrice": 6695,
"avg7daysPrice": 5912,
"traderName": "Therapist",
"traderPrice": 2121,
"traderPriceCur": "₽",
"traderPriceRub": 2121,
"diff24h": 3.06,
"diff7days": 16.71,
"updated": "2026-08-05T17:07:42.165Z",
"link": "https://tarkov-market.com/ch/item/ai-2_medikit",
"bsgId": "5755356824597772cb798962",
"isFunctional": true
}
]https://api.tarkov-market.app/api/v1/items/all?x-api-key=your_api_key
curl -H "x-api-key: your_api_key" "https://api.tarkov-market.app/api/v1/items/all"
Response example
[
{
"uid": "f0fa8457-6638-4ad2-b7e8-4708033d8f39",
"name": "Secure Flash drive",
"shortName": "Flash drive",
"price": 37400,
...
},
{
"uid": "33c15349-44e6-4553-9705-1b6417a1ad6a",
"name": "SSD drive",
...
},
...
]https://api.tarkov-market.app/api/v1/items/all/download?x-api-key=your_api_key
curl -H "x-api-key: your_api_key" "https://api.tarkov-market.app/api/v1/items/all/download"
Response fields
Limits & errors
Terms
The api is intended for personal use.
If you use it for a public project, please link tarkov-market.com as the data provider.
If your public project copies most of the tarkov-market features, your access can be terminated without any warning and compensation.
If you resell the api, your access will be terminated without any warning and compensation.
