Files
ParadoxSaveParser/ParadoxSaveParser.WebAPI
2026-09-15 13:18:09 +02:00
..
2026-09-14 19:09:32 +02:00
2025-05-23 01:22:11 +05:00
2025-05-22 21:44:21 +05:00
2025-04-05 05:59:22 +05:00
2025-04-10 19:56:35 +05:00
2025-05-23 01:24:22 +05:00
2026-09-14 19:09:32 +02:00
2025-04-10 19:56:35 +05:00

WebAPI

Simple web application created using DTLib.Web.

Important

Restart web application once per day to delete outdated data and clean RAM.

Routes

POST /uploadSave

  • Query Params:
  • Request Body: application/octet-stream - .eu4 file
  • Response:
    { "saveId": "string" }
    
    or { "errorMessage": "string" }

GET /getSaveStatus

  • Query Params:
    • id - id of uploaded save file
  • Response: SaveFileMetadata
    {
        "id": "string",
        "game": "string",
        "status": "string",
        "errorMessage": "string?"
    }
    

GET /getSaveData

  • Query Params:
    • id - id of uploaded save file
  • Response:
    {
        "key0": [ "objects" ],
        "key1": [ "objects" ],
        //...
    }
    
    or { "errorMessage": "string" }