API
Release Notes
4.3.001. May 26
This release has a lot of changes under the hood. Almost nothing should change for consumers of the API, but the entire parsing logic was revamped. The parser now relies on the attributes of the Lodestone CSS selectors and uses more uniform logic for different kinds of parses. New
Maintenance
Fixed
|
4.2.020. Mar 26
This release switches to a fork of NetStone and the XIVAPI Lodestone CSS selectors. This allows for certain new features that did not get merged into the original projects. It is now possible to retrieve the facewear slot that got added in Dawntrail. Since Dawntrail had launched, retrieving the dye of gear was broken and hadn't been part of NetStone API. This is now fixed, and the second dye slot added. Lastly, gear and glamours now return icon URLs. New
Maintenance
Fixed
Removed
|
4.1.328. Dec 25 Fixed
|
4.1.228. Dec 25
Fixed
|
4.1.128. Dec 25 Changed
|
4.1.028. Dec 25
This release adds S3 storage for avatars and portraits. Previously, only the URL to the image on Square's servers was cached. If Square updated the images on their side, there would be a mismatch between all other cached data and these updated images. This version optionally allows for the images themselves to be cached separately.
New
|
4.0.121. Dec 25 Fixed
|
4.0.021. Dec 25
This is a huge maintenance release and changes various things under the hood. Most importantly, it introduces API V4. This version reorders API paths to follow REST standards, and expands fallback values. Multiple values can now be sent together for more granular control over when a fallback happens. The API now uses FFXIV ID for authentication, and runs on .NET 10.
New
Changed
Maintenance
Fixed
Removed
|
3.2.119. Jun 25
Some oddities during Lodestone maintenances have happened previously, so I used the most recent maintenance window to fix some minor bugs.
Fixed
|
3.2.020. May 25
This release extends fallback support by handling the more granular privacy settings the Lodestone added. New endpoints allow retrieving characters and free companies from cache by name, and the landing page now shows libraries and their licenses. New
Changed
Removed
|
3.1.130. Apr 25 Changed
Fixed
|
3.1.020. Apr 25
Version 3.0.0 added fallback support for when the Lodestone is entirely unreachable. This version extends this by also allowing fallbacks when the Lodestone is down for maintenance or when a profile is private. If no fallback is used, a 503 HTTP Status Code is returned.
A new .NET SDK replaces the existing API Client, and there is various maintenance-related changes too. New
Changed
|
3.0.124. Mar 25 Changed
Fixed
Maintenance
Breaking Changes
|
3.0.023. Mar 25
This version adds fallback support in case the Lodestone is unreachable. It also adds OpenTelemetry metrics and tracing support. Metrics give me insight in how much the API is used and whether it can process all requests. Tracing data allows me to tune performance and if things went wrong, see where they did. New
Maintenance
Fixed
Removed
Breaking Changes
|
2.1.203. Jan 25
Fixed
|
2.1.105. Nov 24
Fixed
|
2.1.003. Nov 24 New
Changed
Breaking Changes
|
2.0.328. Sep 24
Fixed
|
2.0.227. Sep 24
Fixed
|
2.0.122. Sep 24 Changed
|
2.0.022. Sep 24
Complete revamp of the API. Instead of simply parsing and returning NetStone data, Lodestone data is now mapped onto database entities and cached. Retrieving character data can now return cached data as DTOs, or refresh data from the Lodestone and return as said DTOs. New
|
1.1.015. Jul 24 New
|
1.0.301. Jul 24 Fixed
|
1.0.215. Apr 24 Fixed
|
1.0.127. Jan 24 Fixed
|
1.0.025. Jan 24 Initial Release
|
RabbitMQ
This feature was removed in version 4.0.0.
Queues (inbound)
| Name | REST API method | Associated Exchanges (see below for details) |
| netstone-get-character | /Character/{lodestoneId} | netstone-get-character-result netstone-get-character-refreshed |
| netstone-get-character-class-jobs | /Character/ClassJobs/{lodestoneId} |
netstone-get-character-class-jobs-result netstone-get-character-class-jobs-refreshed |
| netstone-get-character-minions | /Character/Minions/{lodestoneId} |
netstone-get-character-minions-result netstone-get-character-minions-refreshed |
| netstone-get-character-mounts | /Character/Mounts/{lodestoneId} |
netstone-get-character-mounts-result netstone-get-character-mounts-refreshed |
| netstone-get-character-achievements | /Character/Achievements/{lodestoneId} |
netstone-get-character-achievements-result netstone-get-character-achievements-refreshed |
| netstone-get-free-company | /FreeCompany/{lodestoneId} |
netstone-get-free-company-result netstone-get-free-company-refreshed |
| netstone-get-free-company-members | /FreeCompany/Members/{lodestoneId} |
netstone-get-free-company-members-result netstone-get-free-company-members-refreshed |
Exchanges (outbound)
| Name | Sent When |
| netstone-get-character-result | Character data requested through queue. |
| netstone-get-character-refreshed | Character data refreshed from Lodestone. |
| netstone-get-character-class-jobs-result | Character's class jobs requested through queue. |
| netstone-get-character-class-jobs-refreshed | Character's class jobs refreshed from Lodestone. |
|
netstone-get-character-minions-result |
Character's minions requested through queue. |
|
netstone-get-character-minions-refreshed |
Character's minions refreshed from Lodestone. |
|
netstone-get-character-mounts-result |
Character's mounts requested through queue. |
|
netstone-get-character-mounts-refreshed |
Character's mounts refreshed from Lodestone. |
|
netstone-get-character-achievements-result |
Character's achievements requested through queue. |
|
netstone-get-character-achievements-refreshed |
Character's achievements refreshed from Lodestone. |
|
netstone-get-free-company-result |
Free Company data requested through queue. |
|
netstone-get-free-company-refreshed |
Free Company data refreshed from Lodestone. |
|
netstone-get-free-company-members-result |
Free Company's members requested through queue. |
|
netstone-get-free-company-members-refreshed |
Free Company's members refreshed from Lodestone. |
- "result" exchanges are always (cached or not) filled when data was requested through inbound queue, NOT when requested through API.
- "refreshed" exchanges are filled whenever data was refreshed from the Lodestone, no matter whether through inbound queue or API. It is however NOT filled when data was returned from cache.