Event Tokens
Event Tokens are a currency reserved for members that allows you to trigger an event of your choice for all players. This feature is still in development, but currently, each founder account receives 3 tokens per month, for a total of 12 tokens during the season.
For season 6:
| Date | Tokens |
|---|---|
| February 21, 2026 | 3 tokens |
| March 21, 2026 | 3 tokens |
| April 21, 2026 | 3 tokens |
| May 21, 2026 | 3 tokens |
If you become a founder during the season, you will receive all the tokens you should have received. The number of tokens you have during a season is limited, so use them only when absolutely necessary.
You can spawn an event using this POST request.
curl --request POST \--url https://api.artifactsmmo.com/events/spawn \--header 'Accept: application/json' \--header 'Authorization: Bearer YOUR_TOKEN' \--header 'Content-Type: application/json' \--data '{"code": "string"}'const url = 'https://api.artifactsmmo.com/events/spawn';const options = {method: 'POST',headers: { 'Content-Type': 'application/json', Accept: 'application/json', Authorization: 'Bearer YOUR_TOKEN'}, body: '{"code":"string"}'};
try {const response = await fetch(url, options);const data = await response.json();console.log(data);} catch (error) {console.error(error);}import requests
url = "https://api.artifactsmmo.com/events/spawn"headers = { "Accept": "application/json", "Content-Type": "application/json", "Authorization": "Bearer YOUR_TOKEN"}data = {"code": "event_code"}
response = requests.post(url, json=data, headers=headers)print(response.json())