🎮Games

API Endpoints for game servers

Get a list of games our games API supports

GET https://api.sevy.io/games

Our API supports 278 games as of 9/18/2022. We plan to add more as time goes on, and if people request more to be added.

[
    "7d2d",
    "minecraft",
    ... more games
]

Get the online player count, and maximum players for a game server

GET https://api.sevy.io/games/{game}/server/{ip}/{port}/players

The port is optional if no port is given it will use the default port for the game server.

Query Parameters

Name
Type
Description

include

map

Get the map at the same time as player count

{
    "online": 38,
    "max": 64,
}

Get the map a server is currently running

GET https://api.sevy.io/games/{game}/server/{ip}/{port}/map

The port is optional if no port is given it will use the default port for the game server.

{
    "map": "California"
}

Last updated