Game Data for AddOn Developers
Get The Elder Scrolls Online related game data like Chest positions for your AddOn collected by the ESO-Database.com Game Data Export AddOn.
API Endpoints
The following API endpoints are available.
Zones
The zones API call gets all available zones.
API Request
Example Result
{ "status": "OK", "result": { "statustext": "OK", "data": [ { "id": 3, "name": { "en": "Glenumbra", "de": "Glenumbra", "fr": "La Glénumbrie" } }, { "id": 11, "name": { "en": "Vaults of Madness", "de": "Die Kammern des Wahnsinns", "fr": "Les Chambres de la folie" } } ] } }
Chests
The chest API call gets all collected Chest positions. Every entry includes a zone ID. The zone information can be fetched from the zones API call.
API Request
Example Result
{ "status": "OK", "result": { "statustext": "OK", "data": [ { "map_content_type": 0, "x": 0.3159, "y": 0.3197, "zone_id": 8 }, { "map_content_type": 0, "x": 0.3159, "y": 0.3197, "zone_id": 115 } ] } }
Thieves Troves
The Thieves Trove API call gets all collected Thieves Trove positions.Every entry includes a zone ID. The zone information can be fetched from the zones API call.
API Request
Example Result
{ "status": "OK", "result": { "statustext": "OK", "data": [ { "map_content_type": 0, "x": 0.3159, "y": 0.3197, "zone_id": 8 }, { "map_content_type": 0, "x": 0.3159, "y": 0.3197, "zone_id": 115 } ] } }
Psijik Portals
The Psijik Portals API call gets all collected Psijik Portals positions.Every entry includes a zone ID. The zone information can be fetched from the zones API call.
API Request
Example Result
{ "status": "OK", "result": { "statustext": "OK", "data": [ { "map_content_type": 0, "x": 0.3159, "y": 0.3197, "zone_id": 8 }, { "map_content_type": 0, "x": 0.3159, "y": 0.3197, "zone_id": 115 } ] } }