Transformice Api May 2026

Atelier 801 strictly prohibits automated accounts (bots) playing the game. However, read-only stat fetching is generally tolerated. Part 3: Integrating Transformice with Discord (Using Node.js/Python) The most common use of the Transformice API (external) is to create a Discord bot that displays stats. Python Example (Using Requests) import requests def get_tfm_stats(username): # Step 1: Get Player ID profile_url = f"https://transformice.com/en/api/profile/username/{username}" profile_res = requests.get(profile_url)

if not profile_res.json().get('success'): return None player_id = profile_res.json()['player_id'] transformice api

Response (JSON):

If you are a streamer looking to let your chat control the game, a guild leader wanting to run statistics, or a developer building an external tool, understanding the Transformice API is your first step. transformice api