Skip to content

Character Stats

The Character Stats endpoint provides detailed gameplay statistics for a character. Statistics are collected for every character, but they are only visible while the character’s account has an active subscription.

You can retrieve the statistics of any visible member character without authentication.

Endpoint: GET /characters/{name}/stats

Replace YOUR_CHARACTER_NAME with the name of the character whose statistics you want to retrieve.

curl --request GET \
--url 'https://api.artifactsmmo.com/characters/YOUR_CHARACTER_NAME/stats' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'

The response contains the following fields under data:

FieldDescription
monsters_killedNumber of monsters killed, grouped by monster code.
resources_gatheredNumber of resources gathered, grouped by resource code.
action_countsNumber of actions performed, grouped by action type.
deathsTotal number of character deaths.

If the character does not exist or its statistics are not visible, the endpoint returns a 404 response.