3,595 players online right now

Never join an empty server again.

status.tw watches every Teeworlds server live, so you always know where the game is actually happening, and who you'll run into when you get there.
Servers
1,314
Players
3,595
Clans
730
Maps
795
Game types
117

What we give you

Everything the in-game browser leaves out.

The server list in Teeworlds shows you a snapshot. status.tw crawls the master servers every minute and keeps what it sees, so a player, a server or a gametype has a past you can actually look at.
Every server, every minute
Each online server with its map, gametype, down to the full client list: names, clan tags, countries, scores and who is sitting AFK.
Browse servers
Any name, any player
Look up a player to see every server it is connected to right now, plus its last 30 days: total playtime, sessions, the longest one, and the server it keeps coming back to.
Find a player
Clans and their members
Every clan tag we have ever seen in the game, and the server each of those members is currently playing on.
Browse clans
The record per server
Map changes, restarts, joins and leaves are all kept. Each server also gets 30 days of uptime, its busiest weekday and hour, and player counts by day, week and month.
Open a server
What is actually played
Maps, gametypes and client versions, each ranked by the number of servers running it and the players sitting on them right now.
See what is running
Wired into your own tools
All of it comes from a documented REST API. Sign in for a token, follow your usage per route and day, or point a webhook at the server and player events as they happen.
Read the API docs

Build on it

Every number here is one HTTP call away.

Every server, player and clan page here is rendered from a tracker endpoint you can call yourself. The same JSON goes just as well into your bot, your overlay or your spreadsheet.

  • 100 requests a minute per IP, across every public endpoint.
  • Webhooks for map changes, restarts, joins, leaves and master-ban updates, delivered as our system sees them.
  • Sign in to generate an API token and start building amazing software for the Teeworlds community.
Read the API docs
GET /server/list 200 OK
$ curl https://api.status.tw/server/list \
    -H "Authorization: Bearer stw_…"
[
  {
    "name": "teeworlds.dev | CTF | 2v2 | EU",
    "numPlayers": 4,
    "maxPlayers": 16,
    "map": { "name": "ctf5" },
    "gameType": { "name": "CTF" },
    "clients": [
      { "name": "nameless tee", "score": 7, "isAfk": false },
      …
    ]
  }
]