API

Sefhi profile picture

By Sefhi | Published: Jul 04, 2026 | Updated: Jul 04, 2026

About the “API”

Remember this is simply JSON dumps rather than a full functioning API, you will still have to filter what you need.

Not all information in the website is available to the public, only some of the data that’s used on external tools by the community.

If you want something else added, you can ask me in discord (sefhi).


Relics

The Relic API is a huge dump of the hundreds of relics the game has.

{
    "id":"treasure_71222",
    "name":"Absurd Rebellion",
    "rarity":"Rainbow",
    "element":"Dark",
    "region":"Hapadi",
    "description":"+55",
    "stats":["SPD"],
    "set":68326,
    "set_bonus":[["Block Rate"],["DMG Boost"],["DMG RES"]],
    "icon":"treasure_71222.png"
}

Most of the data is self explanatory. When it comes to description, use it only as a reference, since the in-game formulas are quite different on how they scale numbers.


Ingredients

The Ingredients API includes a list of all the current ingredients you can harvest through the different regions in the game.

{
    "id":8000,
    "name":"Raw Meat",
    "rarity":"W",
    "regions":["Verdantglade","Aqualis"],
    "sources":[{
        "type":"Monster",
        "monsters":["Boar","Blue Boar"],
        "drop_chance":30,
        "chance":86,
        "amount":1
    }],
    "icon":"tooltips/swordxstaff/item_8000.png"
}

Based on the information I’ve gotten, most ingredients use the same rules:

  • White node: 70% → 4x base (White), 30% → 2x Blue variant
  • Blue node: 70% → 2x base (Blue), 30% → 1x Purple variant
  • Purple node: 70% → 2x base (Purple), 30% → 1x Orange variant

Higher tier ingredients only come from the Purple-tier nodes.

Meat ingredients have a different rule, a two-stage roll: killing a boar has a 30% chance to drop meat at all, then the rarity is 86% Raw / 12% Tender / 1.8% Prime / 0.2% Exquisite.

Made by Sefhi sefhi