Skip to content

Fight Simulator

The Fight Simulator allows you to simulate solo or group battles against a monster. It can be used via the game client or directly with the API.

You can simulate up to 100 iterations at once and get the details and logs of each simulation.

Interface available in the game client:

Sim interface

Otherwise, you can use this POST request to use the simulator.

curl --request POST \
--url https://api.artifactsmmo.com/simulation/fight \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"characters": [
{
"level": 1,
"weapon_slot": "string",
"rune_slot": "string",
"shield_slot": "string",
"helmet_slot": "string",
"body_armor_slot": "string",
"leg_armor_slot": "string",
"boots_slot": "string",
"ring1_slot": "string",
"ring2_slot": "string",
"amulet_slot": "string",
"artifact1_slot": "string",
"artifact2_slot": "string",
"artifact3_slot": "string",
"utility1_slot": "string",
"utility1_slot_quantity": 1,
"utility2_slot": "string",
"utility2_slot_quantity": 1
}
],
"monster": "MONSTER_CODE",
"iterations": 1
}'