Alpha build — in active development. Anything here can still change. What this means

Compare

How this differs from the tools you already use

You are going to ask how EVE Forge compares to ISK Scout, Adam4EVE, EVE Tycoon or zKillboard, and you will answer it with or without our help. So here is our own version, written with the losses in it. Almost everything in this ecosystem is free and several of these tools are better than us at what they do — a comparison that did not say so would not be worth reading.

How to read thischecked 2 Aug 2026
  • Every claim about another tool carries a source id and the date that source was read — the ids are the ones used in our own research notes, and they are listed with links at the bottom. Tools change; a claim dated 28 Jul 2026 may already be out of date, and if you find one that is, it gets corrected.
  • Every claim about EVE Forge names the file in our own source tree that makes it true, and was verified there on 2 Aug 2026. You cannot read those files — the project is closed source — so the filename is a commitment, not proof. It is also how the next person to edit this page finds out whether it still holds.
  • The EVE Forge column says what we do, not what the other tool lacks. A feature missing from a source's own description is not evidence that the tool does not have it.

Start here

Where EVE Forge is behind

These are true whichever tool you hold us against, so they come first rather than as a footnote after the good news.

  • Nothing works before you log in. Every API route requires a session, so a stranger cannot try the product at all — while ISK Scout and Adam4EVE both deliver their core value with no account.

    backend/app/deps.pyS11 · 28 Jul 2026

  • A free account is capped at two characters, and that cap is now enforced when the data is read rather than only when a pilot is linked. Nothing is deleted: a lapsed subscription serves the oldest-linked pilots and upgrading brings the rest straight back.

    backend/app/services/premium.py

  • All-time history is a Supporter feature; a free account is served the last 30 days. Ingestion is unaffected, so what accrued while you were free appears when you upgrade.

    backend/app/services/finance.py

  • The opportunity scan is a 24-hour batch over at most 300 items across five hub regions, ranked on best bid and ask. It is not a live arbitrage feed.

    backend/app/config.pyS11 · 28 Jul 2026

  • On personal and corporation mining we are at parity with EVE-Orchestra, which already does member detail, moon monitoring and tax on the corporation side.

    backend/app/routes/mining.pyS19 · 28 Jul 2026

  • Tools in this ecosystem die, and the community keeps score with dates on a public wiki page. EVE Forge is new, states its own release stage at the top of every page, and has no such record yet — treat our longevity as an open question rather than a settled one.

    frontend/src/lib/release-stage.tsS7 · 28 Jul 2026

Tool by tool

The comparison

ISK Scout

visit ↗

Cross-hub arbitrage scanning over the five main trade hubs plus active remote stations.

CostFree. Ad-supported, with no paid tier at all.S11 · 28 Jul 2026

Where ISK Scout is better

  • It is free and works without an account — an ESI login is optional, so you can judge it before you hand anything over.

    S11 · 28 Jul 2026

  • It refreshes market data from ESI every five minutes. Our scan pass runs every 24 hours by default, so on freshness it is not close.

    S11 · 28 Jul 2026

  • It simulates order-book depth to show profit that is actually executable, and grades each opportunity A–F for reliability.

    S11 · 28 Jul 2026

  • It also covers courier-contract analysis and reprocessing arbitrage across items with your skills. We have neither: our only reprocessing view is refine-or-sell on ore in the mining module.

    S11 · 28 Jul 2026

What EVE Forge does here

  • Routes come from CCP's own route planner with the in-game Shortest, Safer and Less secure preferences, not from a home-grown idea of a safe route.

    backend/app/services/esi.py

  • The search can start from your pilot's live in-game location and shows the pickup jumps from there to the buy hub, so the leg before the haul is part of the plan.

    backend/app/routes/opportunities.py

  • Units per trip are capped by your cargo hold and again by the destination's daily traded volume, so a load bigger than the market moves is not counted as profit.

    backend/app/routes/opportunities.py

  • Our scan pass ranks on best bid and best ask, covers at most 300 items across five hub regions, and is a Supporter feature; the route-and-cargo Finder is Pro. Stated here so the paragraph above is not read as more than it is.

    backend/app/services/scanner.py

Adam4EVE

visit ↗

Market and industry analytics for New Eden as a whole, maintained by Ethan02.

CostFree. Funded by Patreon, affiliate links and tips.S12 · 28 Jul 2026

Where Adam4EVE is better

  • Deeper market analytics than we have: margin analysis, order depth, price trends, trade volume, price comparison and contract pricing, plus industry profitability, reprocessing, PI and cost-index history.

    S12 · 28 Jul 2026

  • An ESI login is optional. The analytics work for a stranger, which is exactly what ours do not do.

    S12 · 28 Jul 2026

  • None of it sits behind a tier at all. Our market data is free in every region too, but our all-time history and the corporation tools are sold.

    S12 · 28 Jul 2026

What EVE Forge does here

  • Market numbers are joined to your own wallet journal and transactions, so a sale's broker fee is the one your journal recorded — a configured rate is used only where the journal carries no fee row for that trade.

    backend/app/services/finance.py

  • Region compare breaks one item down per station inside a region, which is how you find the cheaper station a few jumps off the hub. Our own research rates this parity with a small edge, not a win.

    backend/app/routes/opportunities.py

EVE Tycoon

visit ↗

Trade and industry profit tracking, market order management and appraisal. The closest analogue to EVE Forge overall.

CostFree for up to two characters, then an ISK subscription tiered on character count. The prices themselves are not visible without logging in.S13 · 28 Jul 2026S14 · 28 Jul 2026

Where EVE Tycoon is better

  • It exists, it is established, and its developer answers questions in a public forum thread — where the replies are praise and feature requests, not privacy objections. We have no track record yet.

    S13 · 28 Jul 2026

  • It was built to fill the hole left by EVE Trade Master and Evernus going unmaintained, and it has been tracking trade and industry profit ever since. On profit tracking this is parity at best for us.

    S13 · 28 Jul 2026

  • It runs a 3-day free trial of the paid tier. EVE Forge has none. The trade finder now shows a free account its top five routes rather than a locked door, but all-time history is still bought on description alone.

    S13 · 28 Jul 2026

What EVE Forge does here

  • Your mining ledger is kept permanently. ESI serves the last 30 days; every sync folds that window into durable rows, so the history keeps accruing.

    backend/app/models.py

  • Killmails are stored permanently, because ESI's recent-killmails endpoint only reaches back a short window and what falls off it is gone.

    backend/app/services/killmails.py

  • Every ESI response body is also archived verbatim, deduplicated by content hash, with no tokens and no request headers kept.

    backend/app/services/esi_archive.py

  • Wallet and mining history start at your first sync. Public killmail history is the exception: a paced zKillboard backfill recovers older kills and losses, while ESI supplies new ones.

    frontend/src/components/killboard.tsx

  • Our tier model was modelled on theirs, character count and all. Our own project notes say so in as many words, and this page is not the place to pretend otherwise.

    docs/project.md

zKillboard

visit ↗

The killboard for EVE Online, covering all of New Eden.

CostFree.S23 · 28 Jul 2026

Where zKillboard is better

  • It is the reference implementation and it is free — named among the ten best third-party tools in the game, on scale and ease of use. Anything we ship is a personal view of your own killmails, not a killboard, and we do not intend to compete for that word.

    S23 · 28 Jul 2026

What EVE Forge does here

  • Your own kills and losses, kept from your first sync onward and shown next to the rest of your account's records.

    backend/app/services/killmails.py

SeAT and Alliance Auth

visit ↗

Open-source corporation and alliance platforms. Alliance Auth is what EVE University runs.

CostFree and self-hosted; SeAT needs a dedicated server as a minimum.S20 · 28 Jul 2026

Where SeAT and Alliance Auth is better

  • Both are free, and both are open source — you can read exactly what the software does with your scopes before you grant them. EVE Forge is closed source, so that route is not available here.

    S20 · 28 Jul 2026

  • Alliance Auth is the access-control layer a large group already runs, EVE University included. If you have a sysadmin, free-and-yours beats hosted-and-ours.

    S21 · 28 Jul 2026

  • SeAT also covers corporation and alliance tracking including moon reporting, which we do not do.

    S20 · 28 Jul 2026

What EVE Forge does here

  • Nothing for you to host: the server, database, cache and upgrades in this stack are ours to run. That is the whole argument for a corporation without a sysadmin, and the only one.

    docker/docker-compose.yml

  • Corporation data is gated on your live in-game roles, fetched from ESI at request time. Without Accountant or Director, CCP answers 403, the section stays empty and we say so rather than work around it.

    backend/app/routes/group.py

The short version

What is actually ours

Four things, and they are narrow on purpose. Your history outlives ESI's own window — the mining ledger it serves is 30 days and recent killmails fall off it entirely, so what we keep from your first sync onward is the one thing no live query can hand back. And in the Opportunity Finder: CCP's real route preferences instead of our own idea of a safe route, the pickup leg measured from where your pilot actually is, and units per trip capped by your cargo hold and by what the destination market really moves.

Everything else on this page is either parity or a loss. If arbitrage is what you came for, ISK Scout is free and sharper at it today; if you want market analytics, Adam4EVE is deeper; if you want a killboard, zKillboard is the killboard. Using both is fine and expected — this is a tool ecosystem, not a league table.

Provenance

Sources

Each was read on the date shown. "Snippet" means the claim comes from a search summary rather than the page itself, and is weaker.

IdSourceReadConfidence
S7EVE University — Third-party tools28 Jul 2026Verified
S11ISK Scout28 Jul 2026Verified
S12Adam4EVE28 Jul 2026Verified
S13EVE Tycoon — developer's forum thread28 Jul 2026Verified
S14EVE Tycoon28 Jul 2026Verified
S19EVE-Orchestra28 Jul 2026Verified
S20SeAT documentation28 Jul 2026Verified
S21Alliance Auth28 Jul 2026Verified
S23The 10 best third-party tools for EVE Online28 Jul 2026Verified