Developer_API

Old: ChuanHsing 2023-01-24 11:22:03

New: ChuanHsing 2023-01-24 11:27:44

OldNewDifferences
139139
140140 The game data does not have any official API, and only possible data can be analyzed from the game files.
141141
142-Almost all data is stored in [.dat](https://zao.github.io/poe-doc/dat.html) files within Content.ggpk. But they only have data, no headers. You can start with the .dat 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.
142+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.
143143
144144 Site | Description
145145 - | -
147147 [RePoE](https://github.com/brather1ng/RePoE/) | Repository of Path of Exile resources for tool developers.
148148 [Poe Dat Viewer](https://snosme.github.io/poe-dat-viewer/) | Web-base Poe Dat Viewer
149149 [PoE dat schema](https://github.com/poe-tool-dev/dat-schema) | Source of truth schema for dat files.
150+[Path Of Building Fork schema](https://github.com/PathOfBuildingCommunity/PathOfBuilding/blob/dev/src/Export/spec.lua) | Source of Path Of Building Fork schema
150151 [LibGGPK2](https://github.com/aianlinb/LibGGPK2) | Windows GUI tool to view Content.ggpk and export
151152
152153 ## Development Tool