Update cookie preferences
PoE
DB
物品
物品
商人物品配方
宝石
技能宝石
辅助宝石
改造宝石
Exceptional
词缀
词缀
Keywords
圣油
花园工艺
工艺互动
使命
使命
升华职业
Bloodline Ascendancy class
天赋树
地图
Economy
赞助
PoE2
DB
TW 繁體中文
CN 简体中文
US English
KR 한국어
RU Русский
JP Japanese
FR Français
DE Deutsch
TH ภาษาไทย
PO Português
ES Spanish
# Official Trade Search For query options, you can use Chrome, Press F12 into dev tool, choose Network tab, and enable Fetch/XHR filter.  **NOTE: Use POESESSID for better rate limiting.** ## Fetch league endpoint and get id, item_ids Endpoint: `https://www.pathofexile.com/api/trade/search/Settlers`, POST JSON to or GET ?q=JSON Request: ``` { "query":{ "status":{ "option":"online" }, "stats":[ { "type":"and", "filters":[ { "id":"explicit.stat_3299347043", "value":{ "min":100 }, "disabled":false } ] } ], "filters":{ "type_filters":{ "filters":{ "category":{ "option":"accessory.belt" }, "rarity":{ "option":"rare" } } }, "misc_filters":{ "filters":{ "ilvl":{ "min":85 }, "corrupted":{ "option":"false" } } } } }, "sort":{ "price":"asc" } } ``` Response: ``` { "id":"OQMzdqQUE", "complexity":11, "result":[ "c66708d98d350298186753096dbe9bed7dedbcd6d02d740e32b161c0c5d0c49d", "b56bcae791c0ecad463fafed58722fcbf6fd6c501066fb80700289d8507acd3c", "62e432ab385a23c62f05484061be15d557b66bc4cff42e549e90031f0ceb0723", ... ], "total":258 } ``` ## Fetch items GET the items by endpoint `https://www.pathofexile.com/api/trade/fetch/` and the items are separated with `,`. Request Format: ``` https://www.pathofexile.com/api/trade/fetch/{item_id1},{item_id2}?query={id} ``` Example Request: ``` https://www.pathofexile.com/api/trade/fetch/c66708d98d350298186753096dbe9bed7dedbcd6d02d740e32b161c0c5d0c49d?query=OQMzdqQUE ``` * [Item Format Schema](https://www.pathofexile.com/developer/docs/reference#type-Item) ## Reversing PoE trade site URLs to get JSON request data encode queries as a gzip-compressed base64-url-encoded stream