ESO Market Tracker
Public market data API

Build on the market.

Search the ESO catalog and retrieve current console pricing from the same versioned data that powers ESO Market Tracker.

Base URLhttps://data.esomarkettracker.com
01

Quick start

The 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"
02

Endpoints

GET/search/:term

Find 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.

GET/item/:key

Retrieve item metadata and current pricing.

Use the item key from a search result. Pricing is grouped first by platform, then trait and quality.

03

Platform keys

xbox-naXbox North America
xbox-euXbox Europe
ps-naPlayStation North America
ps-euPlayStation Europe
04

Response format

Each 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
        }
      }
    }
  }
}