Recombinator

Old: chuanhsing#2097 2025-09-07 17:12:48

New: chuanhsing#2097 2025-09-23 21:16:15

OldNewDifferences
1-# Official Trade Search
1+## Recombinator
22
3-For query options, you can use Chrome, Press F12 into dev tool, choose Network tab, and enable Fetch/XHR filter.
3+[3.26](https://www.reddit.com/r/pathofexile/comments/1ldc3lz/326_recomb_psas_a_few_useful_tipsconfirmations/) [3.25](https://www.reddit.com/r/pathofexile/comments/1exyavx/325_updated_guide_to_recombinators/)
44
5-![](https://i.imgur.com/W9NNKW4.png)
5+### Mechanics
66
7-**NOTE: Use POESESSID for better rate limiting.**
7+1. Choose one of the two items being Recombinated. This will be the base of your final item, and anything tied to that base will be present on the final item. This includes: Influence type, Mirrored tag, Split tag, Corrupted tag, quality, implicits (Corrupted, Synthesized, Influenced), Enchants, and Anoints.
8+2. Combine all of the Prefixes of both items into one modpool, then combine all the Suffixes of both items into a separate modpool.
9+3. Choose a number of mods from each pool. The number of mods chosen depends on the total number of mods within that pool.
10+ * <strong>1 Mod in the pool</strong><br>66.6% to choose 1 mod<br>33.3% to choose 0 mod
11+ * <strong>2 Mods in the pool</strong><br>33.3% to choose 2 mods<br>66.6% to choose 1 mods
12+ * <strong>3 Mods in the pool</strong><br>20% to choose 3 mods<br>50% to choose 2 mods<br>30% to choose 1 mod
13+ * <strong>4 Mods in the pool</strong><br>35% to choose 3 mods<br>55% to choose 2 mods<br>10% to choose 1 mod
14+ * <strong>5 Mods in the pool</strong><br>50% to choose 3 mods<br>50% to choose 2 mods
15+ * <strong>6 Mods in the pool</strong><br>70% to choose 3 mods<br>30% to choose 2 mods
16+4. Combine the chosen Prefixes and the chosen Suffixes to make your final item.
17+5. After the final item is formed, a new mod may be added. The chance for this to happen depends on many factors.
818
9-## Fetch league endpoint and get id, item_ids
19+### Other
1020
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-```
21+* Item Level average and round
22+* corrupted usable
23+* choose one base type, keep it's influence, sockets, links, implicits, corrupted
24+* choose pick modifier from one of the two, maximum as same explicit modifiers counts
25+ * modifiers could be upgrade or downgrade
26+ * work for 2/3 essence modifiers
27+ * work for legacy modifier
28+ * work for 2 fractured modifiers
29+ * don't respect metamods
6130
62-Response:
31+### Additional Modifier
6332
64-```
65-{
66- "id":"OQMzdqQUE",
67- "complexity":11,
68- "result":[
69- "c66708d98d350298186753096dbe9bed7dedbcd6d02d740e32b161c0c5d0c49d",
70- "b56bcae791c0ecad463fafed58722fcbf6fd6c501066fb80700289d8507acd3c",
71- "62e432ab385a23c62f05484061be15d557b66bc4cff42e549e90031f0ceb0723",
72- ...
73- ],
74- "total":258
75-}
76-```
33+There are limited item class for additional modifier.
7734
78-## Fetch items
35+### Guide
7936
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-```
37+* [The Complete Guide to Recombinators: Part 1](https://www.reddit.com/r/pathofexile/comments/v0nm0c/the_complete_guide_to_recombinators/)
38+* [The Complete Guide to Recombinators: Part 2](https://www.reddit.com/r/pathofexile/comments/vko2n1/the_complete_guide_to_recombinators_part_2/)
8939
90-* [Item Format Schema](https://www.pathofexile.com/developer/docs/reference#type-Item)
91-
92-## Reversing PoE trade site URLs to get JSON request data
93-
94-for https://www.pathofexile.com/trade/search/Settlers/NK6Ec5 , You can resolve it to JSON request with these https://www.pathofexile.com/api/trade/search/Settlers/NK6Ec5
40+