Online Players API

Check Minecraft servers for online players

URL

https://api.flingisenflong.com

POST /online-players

Send a JSON body with ip and (optional) port to check server status.

Request Example

POST /online-players
Content-Type: application/json

{
  "ip": "play.hypixel.net",
  "port": 25565
}
    

Response Example

{
  "online": 56,
  "players": ["Steve", "Alex", "Herobrine"],
  "version": "1.21.8",
  "motd": "Vanilla Survival"
}
    

Note: due to Minecraft limitations, the API can only return up to 12 online users. If more are online, 12 random players will be returned.