More actions
mNo edit summary |
Remove relative time reference. Apply QuillBot tips (https://quillbot.com/grammar-check). See UniWiki:Manual of Style/Words to watch#Relative time references |
||
| (22 intermediate revisions by 8 users not shown) | |||
| Line 1: | Line 1: | ||
EVE Stable Infrastructure (ESI) is an API that can be used by [[Third-party tools|third party applications]] to interact with data from the EVE game servers. It replaces CREST and the XML API which were shut down on May 8th, 2018.<ref>Dev insights blog: [https://developers.eveonline.com/blog/article/important-information-on-the-future-of-the-eve-api Important Information on the Future of the EVE API] (2018-01-03)</ref> The data returned by ESI is in the JSON format. | |||
EVE | |||
ESI has both public-data and authenticated endpoints, the latter of which require a character to log in via [[ | ESI has both public-data and authenticated endpoints, the latter of which require a character to log in via [[EVE SSO]] to their character account to gain access to information specific to their character or, provided they have the appropriate [[Managing corporation members#List of roles|corporate role]], their corporation. | ||
CCP has indicated that their goal is to completely replace the [[ | CCP has indicated that their goal is to completely replace the [[Static Data Export]] (SDE) with ESI, but as of September 2023, there are still many missing features. For example, industry recipes still require the [[Static Data Export|SDE]]. | ||
As a reminder to developers, it is expressly forbidden for developers of third party applications to use them for ill intent<ref | As a reminder to developers, it is expressly forbidden for developers of third party applications to use them for ill intent<ref>Dev insights blog: [https://developers.eveonline.com/blog/reminder-to-developers-no-scamming Reminder to Developers: No Scamming] (2016-07-04)</ref><ref>Developer documentation: [https://developers.eveonline.com/docs/resources/license License]</ref> | ||
ESI and SSO are commonly used together, however they do have independent features and uses as well. For this reason, they have been split into their own articles. See [[ | ESI and SSO are commonly used together, however they do have independent features and uses as well. For this reason, they have been split into their own articles. See [[EVE SSO]] for information regarding the character authentication (and management thereof) aspect. Besides [[EVE SSO]], the [[Static Data Export]] and [[Image Server]] might also be useful. | ||
==ESI Endpoints== | == ESI Endpoints == | ||
ESI provides | As of March 2025 ESI provides 195 endpoints, 76 of which related to public data and need no character or client authentication, and 119 of which are authenticated as they relate to privileged information about specific characters or corporations<ref>Yurix: [https://yurix.ch/blog/esi-endpoint-stats.html ESI endpoint counts]</ref>. | ||
The general categories these endpoints fall under are: | The general categories these endpoints fall under are: | ||
| Line 20: | Line 19: | ||
|- | |- | ||
| Assets || || 6 || Inventory details for characters and corporations | | Assets || || 6 || Inventory details for characters and corporations | ||
|- | |- | ||
| Calendar || || 4 || Read and respond to a character's calendar events | | Calendar || || 4 || Read and respond to a character's calendar events | ||
|- | |- | ||
| Character || 4 || | | Character || 4 || 10 || Information relating specifically to a character, where it does not fall under any other category. | ||
|- | |- | ||
| Clones || || 2 || Information on a character's clones and their active implants | | Clones || || 2 || Information on a character's clones and their active implants | ||
| Line 58: | Line 55: | ||
|- | |- | ||
| Market || 6 || 5 || Market orders and histories, as well as a character or corporation's specific orders. | | Market || 6 || 5 || Market orders and histories, as well as a character or corporation's specific orders. | ||
|- | |- | ||
| Planetary Industry || 1 || 3 || Details on a character's planetary colonies and their layouts, as well as public information on PI Schematics. | | Planetary Industry || 1 || 3 || Details on a character's planetary colonies and their layouts, as well as public information on PI Schematics. | ||
| Line 65: | Line 60: | ||
| Routes || 1 || || Use the game's algorithms to calculate a route between two systems | | Routes || 1 || || Use the game's algorithms to calculate a route between two systems | ||
|- | |- | ||
| Search || | | Search || || 1 || Perform a search on the provided string against the chosen categories. If for a character, will also search private things the character can see. | ||
|- | |- | ||
| Skills || || 3 || Information on a character's attributes, skills and skill training queue. | | Skills || || 3 || Information on a character's attributes, skills and skill training queue. | ||
| Line 73: | Line 68: | ||
| Status || 1 || || Status of the game: Whether it's running, what version, and how many players are logged in. | | Status || 1 || || Status of the game: Whether it's running, what version, and how many players are logged in. | ||
|- | |- | ||
| Universe || | | Universe || 29 || 1 || Just about all general public, static data in the game. | ||
|- | |- | ||
| User Interface || || 5 || Allows opening certain UI windows for a character if they are logged in to the game. | | User Interface || || 5 || Allows opening certain UI windows for a character if they are logged in to the game. | ||
| Line 81: | Line 76: | ||
| Wars || 3 || || Details on all wars that have happened in the game, including their killmails. | | Wars || 3 || || Details on all wars that have happened in the game, including their killmails. | ||
|} | |} | ||
== Examples == | |||
To get a list of all alliances in EVE, the <code>alliances</code> endpoint can be used. It lists the alliance ID of all alliances. Since it is a public endpoint, it is even possible to a look at it in the browser, although the data comes is in machine-readable JSON: https://esi.evetech.net/alliances | |||
Some endpoints also support parameter in the URL. For example the type endpoint <code>universe/types/{type_id}/</code> returns information about a type ID. The rifter has type ID 587. To look up information like its description, the <code>{type_id}</code> part in the URL is replaced with the type ID. The full URL would then be https://esi.evetech.net/latest/universe/types/587/ https://esi.evetech.net/universe/types/587 | |||
If possible, CCP requests that users add a descriptive user agent to any ESI request, including a contact email, so that they can be contacted instead of being banned for e.g. causing too much load on the ESI servers. <ref>Developer documentation [https://developers.eveonline.com/docs/services/esi/best-practices/#user-agents Best Practices for ESI > User Agents] (</ref> | |||
== Tips & Tricks == | |||
ESI endpoints use a Token system for rate limiting [https://smudge.ai/blog/ratelimit-algorithms#sliding-windows Tokens on a Sliding Window refresh] - each hit on an endpoint uses up a token, and if attempted too often (usually at a rate faster than the cache time of the endpoint), the caller will be limited until the next window refresh passes and tokens are returned. | |||
More information on the rate limiting can be found in the [https://developers.eveonline.com/docs/services/esi/rate-limiting/ documentation]. | |||
Eve uses a lot of 'ID's, that are unique for things. Ships, players, corporations, systems all have unique IDs. Most IDs are arranged in 'Ranges' as well. Comparing IDs against these ranges to find out what type of ID it is. https://developers.eveonline.com/docs/guides/id-ranges/ has these ranges listed out. Figuring out what an ID is can answer many questions of what ESI to find out what it is. There are two very fast ways to find Names for IDs as well. Linking a thing in chat, then hit enter, then right click, and copy. This will put the URL code in the clipboard. Alternately, go to a site like https://zkillboard.com/ and the ID will be at the end. Ex: https://zkillboard.com/ship/22460 the Eris id is 22460. See also [[How to get ID]] | |||
== Resources For Developers == | == Resources For Developers == | ||
| Line 87: | Line 97: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| https:// | | https://developers.eveonline.com/docs/ || Community-maintained documentation for ESI. | ||
|- | |- | ||
| https:// | | https://developers.eveonline.com/api-explorer || CCP's front-end User Interface for "playing" with ESI and discovering what the various endpoints can do. | ||
|- | |- | ||
| https://github.com/esi/esi-issues || Official Git Repository for tracking issues and requests for ESI. | | https://github.com/esi/esi-issues || Official Git Repository for tracking issues and requests for ESI. | ||
| Line 97: | Line 107: | ||
| https://community.eveonline.com/news/dev-blogs/introducing-esi/ || Original Announcement introducing ESI. | | https://community.eveonline.com/news/dev-blogs/introducing-esi/ || Original Announcement introducing ESI. | ||
|- | |- | ||
| https://github.com/devfleet/awesome-eve#developer-tools-resources-and-apis || Community-maintained list of resources and tools to work with ESI. | | <s>https://github.com/devfleet/awesome-eve#developer-tools-resources-and-apis</s> || ARCHIVED (2025-06-20) Community-maintained list of resources and tools to work with ESI. | ||
|- | |||
| https://developers.eveonline.com/docs/community/ || Community tools and Services | |||
|- | |- | ||
| https://forums.eveonline.com/t/3-3-0-gesi-google-sheets-esi-library/13406 || GESI - A library for working with ESI in Google Sheets | | https://forums.eveonline.com/t/3-3-0-gesi-google-sheets-esi-library/13406 || GESI - A library for working with ESI in Google Sheets | ||
|- | <!-- dead link |- | ||
| https://developers.eveonline.com/blog/ | | https://developers.eveonline.com/blog/Article/using-esi-with-google-sheets || A slightly outdated CCP Dev blog on working with GESI (see above) --> | ||
|- | |- | ||
| https://www.fuzzwork.co.uk/2017/03/14/using-esi-google-sheets/ || A different guide on working with GESI (see above) | | https://www.fuzzwork.co.uk/2017/03/14/using-esi-google-sheets/ || A different guide on working with GESI (see above) | ||
|- | |- | ||
| https://wiki.zansha.space/index.php/SSO_Authentication_in_Microsoft_Power_Query || Information on working with ESI in MS Excel with Power Query | | https://web.archive.org/web/20190310221844/https://wiki.zansha.space/index.php/SSO_Authentication_in_Microsoft_Power_Query || Information on working with ESI in MS Excel with Power Query (archived webpage) | ||
|} | |} | ||
== Patch History == | |||
{{expansion past| | |||
'''2025.03.02''' - Dev insights blog: [https://developers.eveonline.com/blog/deprecation-and-impending-removal-of-esi-opportunities-and-esi-bookmarks Deprecation and impending removal of esi-opportunities and esi-bookmarks] | |||
* The bookmark endpoints has been removed after being disabled for more than 5 years<ref>Dev insights blog: [https://developers.eveonline.com/blog/article/temporary-blackout-of-esi-bookmarks Temporary blackout of ESI-bookmarks] (2019-11-24)</ref>. | |||
* The opportunities endpoints have been removed. | |||
'''2025.10.17''' | |||
* Rate Limiting in the form of Tokens was added <ref> Dev insights blog: [https://developers.eveonline.com/blog/hold-your-horses-introducing-rate-limiting-to-esi Hold your horses: introducing rate limiting to ESI] (2025-10-17)</ref> | |||
}} | |||
== External links == | |||
* Dev blog: [https://www.eveonline.com/news/view/eve-evolved-the-future-of-eves-api EVE Evolved: The Future of EVE’s API] (2025-02-27) | |||
* Dev blog: [https://www.eveonline.com/news/view/esi-delivered-the-next-chapter ESI Delivered: The Next Chapter] (2025-08-26) | |||
== References == | == References == | ||
<references /> | <references /> | ||
[[Category: | |||
[[Category:Applications]] | |||