Achievements
Achievements are objectives to be met during the season by all your characters. They will earn you gold and points to earn season badges.
The current season will require players to accumulate 135 points across 58 achievements. The first player to reach 135 points earns a unique badge.
You can use this POST request to view a character's list of achievements.
cURL
curl --location --request GET 'https://api.artifactsmmo.com/accounts/{account}/achievements' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Javascript
var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Content-Type", "application/json");
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://api.artifactsmmo.com/accounts/{account}/achievements", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));