GET
/search/:termFind matching items by all or part of an item name.
URL-encode the search term. The response contains item references and pricing grouped by console megaserver.
Search the ESO catalog and retrieve current console pricing from the same versioned data that powers ESO Market Tracker.
https://data.esomarkettracker.comThe API is read-only and requires no authentication. Item keys returned by search can be passed directly to the item endpoint.
curl "https://data.esomarkettracker.com/search/dreugh%20wax"
curl "https://data.esomarkettracker.com/item/1393740546"/search/:termFind matching items by all or part of an item name.
URL-encode the search term. The response contains item references and pricing grouped by console megaserver.
/item/:keyRetrieve item metadata and current pricing.
Use the item key from a search result. Pricing is grouped first by platform, then trait and quality.
xbox-naXbox North Americaxbox-euXbox Europeps-naPlayStation North Americaps-euPlayStation EuropeEach price record includes the average, observed range, common stack quantity, and date. Missing trait or quality combinations are omitted.
{
"item": {
"internalId": 1393740546,
"name": "Dreugh Wax",
"description": "Improves an item from Epic to Legendary."
},
"pricing": {
"xbox-na": {
"--": {
"--": {
"average": 2865,
"date": "2026-03-29",
"commonQuantity": 8,
"minimum": 2600,
"maximum": 3500
}
}
}
}
}