Path of Price Check

Attribution

The code in this repository is MIT licensed (LICENSE). It is built on, and would not work without, the projects and data sources below, which keep their own terms.

Grinding Gear Games

Path of Exile is © Grinding Gear Games. This project is a free, non-commercial fan tool, and is not affiliated with or endorsed by Grinding Gear Games in any way.

Item names, modifier wordings, the clipboard format the game writes on Ctrl+C, and the stat identifiers a trade query is built from are GGG's. None of it is baked into the binary - it is downloaded at runtime from PathOfPriceCheck-Data, whose DATA-LICENSE.md states what that bundle contains and how it was derived. No game assets - images, sounds, models - are copied or redistributed anywhere in this project.

How this client uses GGG's API

Only publicly accessible endpoints are used; this application is not registered with GGG, has no API key, and never asks the user for account credentials.

If anyone at GGG wants a change made here, an issue is the route and it will be actioned. See CONTACT.md.

poe.ninja

The reference price row - what a unique, a gem, a currency item or a base type is currently going for - comes from poe.ninja, used under its public API documentation.

Path of Exile Wiki

The data bundle's per-unique modifier dataset - which modifiers a given unique can roll, and which of them come from a random pool - is not in the game files. That grouping comes from poewiki's item_mods cargo table, licensed CC BY-NC 3.0: attribution required, non-commercial use only, which this project is.

The attribution string travels with the bundle rather than staying behind in the publisher's repository - the manifest carries it, the installer writes it through, and Settings renders it - because an attribution that does not reach the user is not an attribution.

Tooling behind the data bundle

The data repository decodes GGG's own .datc64 bundles with pathofexile-dat / poe-dat-viewer and dat-schema.

Prior art

Awakened PoE Trade (MIT) is the tool this one is in the spirit of, and reading it is how several of the problems here were understood to be problems. No code is taken from it.

Libraries

Fetched from source at pinned tags by CMake; none are vendored into this repository.

project license used for
SDL3 zlib window, GL context, events, tray icon
Dear ImGui MIT the entire UI
nlohmann/json MIT every JSON payload and the config file
doctest MIT tests
libcurl curl (MIT/X derivative) HTTP; system package on Linux, static Schannel build on Windows
zlib zlib gzip for the trade data endpoints, on the Windows curl build

stb_truetype and stb_rect_pack (public domain / MIT) ride along inside Dear ImGui and rasterize all text.

Fonts

The UI renders in Fontin by Jos Buivenga (exljbris), the typeface the game itself uses. Four faces are embedded in the executable.

Fontin is free for personal and commercial use, but its license nominally forbids redistribution without the author's permission, which bundling into a released binary arguably is. That is a deliberate maintainer decision with its reasoning written down in assets/fonts/README.md, along with how to swap the typeface out - it is one generated file and no code change. PPC_FONT_DIR already overrides the embedded faces at runtime. If you are Jos Buivenga and would prefer this not be bundled, open an issue and it will be removed.

For text this project did not write - trade account and character names, which are routinely Cyrillic, Hangul or CJK, none of which Fontin covers - a fallback face is loaded from whatever the operating system already ships. Nothing is bundled for it and nothing is redistributed.

Font Awesome Free

The buttons a word does not fit on are drawn in Font Awesome Free Solid, by Fonticons, Inc. Only the codepoints actually used are bundled - scripts/fetch-glyphs.sh subsets the release down to those and no more, and assets/fonts/README.md says which and why. The website's navigation icons are the same set, inlined into site/style.css rather than fetched from anywhere.

Icons are CC BY 4.0 and the fonts are SIL OFL 1.1; both permit redistribution with attribution, which this section is. The full text is fetched to assets/fonts/FontAwesome-LICENSE.txt.

Icon

assets/popc_icon.png and the .ico generated from it are part of this repository and covered by its MIT license.