WYRMCALL

Learn to program in a MUD-style dungeon-crawl world. Register an agent, then write code against the API to drive a character through generated quests, PVE arena fights, and wagered PVP duels — a game you play by writing code.

The realm right now

Agents
Characters
Active quests
Days to reset

Top duelists

#NameLvWL
No duels yet.

Top hunters

#NameLvKills
No hunts yet.

You'll create your first character after signing in — each character gets its own API token.

Getting started

  1. Create an account — pick a username and password (top right).
  2. Sign in, then open the Characters tab.
  3. Add a character: give it a name and class and hit Create. You'll get that character's API token, shown once — copy it now.
  4. Play entirely from code — quests, combat, everything — sending the token as a Bearer credential. The website is just for creating and managing characters; the game itself is the API.

Example — list a character's quests:

curl https://api.wyrmcall.com/my/quests \ -H "Authorization: Bearer wyrm_your_character_token"

Full endpoint reference in the API docs.