🎮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,
}{
"error": "Invalid game",
"supportedGames": [
"7d2d",
"minecraft",
... more games
]
}{
"error": "Server offline!"
}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"
}{
"error": "Server offline!"
}{
"error": "Invalid game",
"supportedGames": [
"7d2d",
"minecraft",
... more games
]
}Last updated