MirageVillageShippingSanctumArchnemesisExpeditionDetonatorUltimatumAltarRitualRuneHeistSumgglersCacheHarvestPortalAfflictionInitiatorBlightCoreLegionInitiatorBetrayalSymbolCatarinaDelveMineralVeinIncursionCraftingBenchBestiaryRareMonsterAbyssBreachEssenceStrongboxShrine
API%3ATrade

Old: zemzemkoko#5151 2026-08-27 05:15:58

New: chuanhsing#2097 2026-09-06 13:42:10

OldNewDifferences
1-# Tools
1+# Official Trade Search
22
3+For query options, you can use Chrome, Press F12 into dev tool, choose Network tab, and enable Fetch/XHR filter.
34
5+![](https://i.imgur.com/W9NNKW4.png)
46
5-## Information Resources
7+**NOTE: Use POESESSID for better rate limiting.**
68
7-Site | Description
8-- | -
9-[PoEDB](https://poedb.tw/us/) | Database and index for information from the ggpk
10-[Developer API](Developer_API) | PoEDB API Collection
11-[PoE Community Wiki](https://www.poewiki.net/) | Community fan wiki
12-[Daily Labyrinth Layouts](http://www.poelab.com/) | Labyrinth Layouts are updated daily by a team of runners
13-[PoE Tooldev Discord](https://discord.gg/pathofexile) #tooldev-general | Tool Development Discord
9+## Fetch league endpoint and get id, item_ids
1410
15-## Character Builds and Planners
11+Endpoint: `https://www.pathofexile.com/api/trade/search/Settlers`, POST JSON to or GET ?q=JSON
12+Request:
13+```
14+{
15+ "query":{
16+ "status":{
17+ "option":"online"
18+ },
19+ "stats":[
20+ {
21+ "type":"and",
22+ "filters":[
23+ {
24+ "id":"explicit.stat_3299347043",
25+ "value":{
26+ "min":100
27+ },
28+ "disabled":false
29+ }
30+ ]
31+ }
32+ ],
33+ "filters":{
34+ "type_filters":{
35+ "filters":{
36+ "category":{
37+ "option":"accessory.belt"
38+ },
39+ "rarity":{
40+ "option":"rare"
41+ }
42+ }
43+ },
44+ "misc_filters":{
45+ "filters":{
46+ "ilvl":{
47+ "min":85
48+ },
49+ "corrupted":{
50+ "option":"false"
51+ }
52+ }
53+ }
54+ }
55+ },
56+ "sort":{
57+ "price":"asc"
58+ }
59+}
60+```
1661
17-Site | Description
18-- | -
19-[poe.ninja Builds](https://poe.ninja/challenge/builds) | An index of player and streamer character data in challenge and event leagues
20-[Path of Building fork](https://github.com/PathOfBuildingCommunity/PathOfBuilding/) | A fork of the original Path of Building with more features, managed by the community
21-[PoE Planner](http://poeplanner.com/) | An online build planner
22-[PoESkillTree](https://github.com/PoESkillTree/PoESkillTree/) | An offline build planner
23-[poebuilds.cc](https://www.poebuilds.cc/) | simple build aggregator
24-[PoB Archives](https://pobarchives.com/) | Daily updated archive of PoE1 and PoE2 builds from YouTube and Reddit, filterable by class, skill and stats, with PoB import codes
25-[Mikelat's Mana Reserved Calculator](https://poe.mikelat.com) | A simple mana reserve calculator
26-[exiles.build](https://exiles.build)| Gear check and build companion for PoE2. Put in your build, compare your gear and passives, get upgrade recommendations
62+Response:
2763
28-## Crafting Resources
64+```
65+{
66+ "id":"OQMzdqQUE",
67+ "complexity":11,
68+ "result":[
69+ "c66708d98d350298186753096dbe9bed7dedbcd6d02d740e32b161c0c5d0c49d",
70+ "b56bcae791c0ecad463fafed58722fcbf6fd6c501066fb80700289d8507acd3c",
71+ "62e432ab385a23c62f05484061be15d557b66bc4cff42e549e90031f0ceb0723",
72+ ...
73+ ],
74+ "total":258
75+}
76+```
2977
30-Site | Description
31-- | -
32-[Craft of Exile](https://www.craftofexile.com/) | Item crafting resource and simulator
33-[Vorici Chromatic Calculator](http://siveran.github.io/calc.html) | Attempts to calculate the optimal use for your Chromatic Orbs. May not be fully accurate.
78+## Fetch items
3479
35-## Trading Tool
80+GET the items by endpoint `https://www.pathofexile.com/api/trade/fetch/` and the items are separated with `,`.
81+Request Format:
82+```
83+https://www.pathofexile.com/api/trade/fetch/{item_id1},{item_id2}?query={id}
84+```
85+Example Request:
86+```
87+https://www.pathofexile.com/api/trade/fetch/c66708d98d350298186753096dbe9bed7dedbcd6d02d740e32b161c0c5d0c49d?query=OQMzdqQUE
88+```
3689
37-Site | Description
38-- | -
39-[PoE Overlay Community Fork](https://github.com/PoE-Overlay-Community/PoE-Overlay-Community-Fork/) | All-in-one macro and price checking tool, standalone community version.
40-[Awakened PoE Trade](https://github.com/SnosMe/awakened-poe-trade/) | price checking tool
41-[PoE Lurker](https://github.com/C1rdec/Poe-Lurker/) | Compact trading manager and companion
42-[GeforceNow Price Check](https://github.com/thepepperoniguy/GFNPriceCheck/) |
90+* [Item Format Schema](https://www.pathofexile.com/developer/docs/reference#type-Item)
4391
44-## Trading and Economy
92+## Reversing PoE trade site URLs to get JSON request data
4593
46-Site | Description
47-- | -
48-[Official Path of Exile Trade](https://www.pathofexile.com/trade) | PoE Shop Indexer
49-[Better Trading Extension](https://chrome.google.com/webstore/detail/better-pathofexile-tradin/fhlinfpmdlijegjlpgedcmglkakaghnk) | Extension for Google Chrome that can save trade searches and improves trading interface among other features
50-[poe.ninja](http://poe.ninja/) | A history graph of the price of items across leagues
51-[PoE Antiquary](https://poe-antiquary.xyz/) | index of older league price data from poe.ninja
52-[Menagerie](https://github.com/nomis51/Menagerie/) | A Path of Exile trade manager to simplify and speed up your trading experience, and much more!
53-[Watcher's Eye Search](https://vindexus.github.io/WatchersEyeSearch)
54-[Exilence CE](https://github.com/exilence-ce/exilence-ce) | Exilence CE (previously Exilence Next) is a desktop application that helps you calculate how valuable your character, inventory and stash tabs are. The data is broken down and summarized over time, to see how much you earn on an hourly basis.
55-[Acquisition](https://github.com/gerwaric/acquisition) | Offline character inventory and stash tab search tool, with forum thread shop management.
56-
57-## Bulk Trading
58-
59-Site | Description
60-- | -
61-[PoEHub](https://poe-hub.com/) | TFT bulk trading
62-[Wealthy Exile](https://wealthyexile.com/) | bulk trading
63-[PoExchange](https://poexchange.maxroll.gg/) | bulk trading, was poestack
64-
65-## Filters
66-
67-Site | Description
68-- | -
69-[poe1filter.com](https://poe1filter.com/) | Custom Loot Filter Generator
70-[NeverSink.Filter](https://github.com/NeverSinkDev/NeverSink-Filter/releases) | NeverSink.Filter
71-[FilterBlade](http://www.filterblade.xyz/) | Loot Filter Customizer
72-
73-## In-Game Tools
74-
75-Site | Description
76-- | -
77-[Lutbot Logout Macro](http://lutbot.com/) | A TCP disconnect logout macro with more optional functionality. Also integrated with the Trade Macro.
78-
79-## Hideouts
80-
81-Site | Description
82-- | -
83-[HideoutShowcase](https://hideoutshowcase.com/) | Hideouts import file database and calculator. Contains screenshots, videos, master level required, decorations needed, etc.
84-
85-## Media
86-
87-Site | Description
88-- | -
89-[Developer Tracker](http://www.gggtracker.com/) | Tracks the post from GGG staff members on the official forums and reddit.
90-[Reddit](https://www.reddit.com/r/pathofexile/) | A subreddit dedicated to Path of Exile
91-
92-## Community
93-
94-Site | Description
95-- | -
96-[The Forbidden Trove Discord](https://discord.gg/zBpfweq) | Largest In-game trading Discord group
97-[MF Academy](https://discord.gg/AUGEZM7e) | MF Academy Discord group
98-
99-## Render Tool
100-
101-Site | Description
102-- | -
103-[Horadric Helper](https://github.com/meta-is-beta/horadric-helper) | A JavaScript WebComponents library that allows you to display tooltips from ARPG games on your website using Html tags. by meta-is-beta
94+encode queries as a gzip-compressed base64-url-encoded stream