Skip to content

Getting Started

Artifacts is an asynchronous MMORPG in which you can control up to 5 characters at the same time. Your characters can fight monsters, gather resources, craft items and much more. Unlike a traditional game, you’ll have to write your own scripts in your preferred programming language to control your characters via an API.

  1. Register at artifactsmmo.com/account/register
  2. Log in and create your first character
  3. Copy your token from your account page

You can view your character using this request:

Endpoint: GET /characters/{name}

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

The API will return a list of your characters. Now it’s time to start playing with our tutorial.


Now it’s time to start our tutorial, available directly in our game client. The game client is a powerful web application that lets you control and monitor your characters in real time.

It is available in JavaScript and Python and will guide you through the basics:

  • Moving your character across the map
  • Fighting your first monster
  • Resting to recover HP
  • Crafting your first weapon

To start the tutorial, open the game client at play.artifactsmmo.com and click the Tutorial button in the top right corner.

Tutorial button location