Update cookie preferences
PoE
DB
아이템
아이템
거래 조합
젬
스킬 젬
보조 젬
Transfigured Gems
속성 부여
속성 부여
성유
푸르미 제작
Metamods
퀘스트
퀘스트
전직 클래스
패시브 스킬 트리
지도
Patreon
PoE2
DB
TW 正體中文
CN 简体中文
US English
KR 한국어
JP Japanese
RU Русский
PO Português
TH ภาษาไทย
FR Français
DE Deutsch
ES Spanish
# Developer API There are 2 api sets, POESESSID and OAuth 2.0. ## Data Export The game data does not have any official API, and only possible data can be analyzed from the game files. Almost all data is stored in .dat64 files within Content.ggpk. But they only have data, no headers. You can start with the .dat64 format, the [PoE dat schema](https://github.com/poe-tool-dev/dat-schema) project is the latest format. Or try to parse the .dat format from [PoE Dat Viewer](https://snosme.github.io/poe-dat-viewer/) yourself. [RePoE](https://github.com/brather1ng/RePoE/) collects many common and processed .dat files and exports them to .json format. Site | Description - | - [PyPoE](https://github.com/Project-Path-of-Exile-Wiki/PyPoE) | Collection of Python Tools for Path of Exile, mostly used by wiki [RePoE](https://github.com/brather1ng/RePoE/) | Repository of Path of Exile resources for tool developers. [Poe Dat Viewer](https://snosme.github.io/poe-dat-viewer/) | Web-base Poe Dat Viewer [PoE dat schema](https://github.com/poe-tool-dev/dat-schema) | Source of truth schema for dat files. [Path Of Building Fork schema](https://github.com/PathOfBuildingCommunity/PathOfBuilding/blob/dev/src/Export/spec.lua) | Source of Path Of Building Fork schema [LibGGPK2](https://github.com/aianlinb/LibGGPK2) | Windows GUI tool to view Content.ggpk and export PyPoe stable.py to spec.json ``` from PyPoE.poe.file.specification.data import stable from json import dump with open('D:/spec.json', 'w') as f: dump(stable.specification.as_dict(), f) ``` ## Development Tool Site | Description - | - [Tooldev Discord Channel](https://discord.gg/pathofexile) | #tooldev-general [PoeSharp](https://github.com/andreandersen/PoeSharp) | C# Library to deal with PoE stuff [PoE Go](https://github.com/ccbrown/poe-go) | an entry-level guide to writing tools for PoE in the Go programming language. ## APIs Site | Description - | - [PoE API](https://poedb.tw/us/poe-api) | PoEDB collections of official API [Official Website API](https://www.pathofexile.com/developer/docs) | OAuth 2.0 API endpoints of Path of Exile [POESESSID](POESESSID) [API:Passive_Skill_Tree](API%3APassive_Skill_Tree) [API:OAuth](API%3AOAuth) [API:Ladder](API%3ALadder) [API:Trade](API%3ATrade) [API:Public_Stashes](API%3APublic_Stashes)
Update cookie preferences