| Required | Parameter | Type | Description | Default Value |
|---|---|---|---|---|
| True | IP | String | Server's IP address or domain | None |
| False | Port | Integer | The port of which the game server is running on. | 27015 |
Parameters
| Required | Parameter | Type | Description | Default Value |
|---|---|---|---|---|
| True | IP | String | Server's IP address or domain | None |
| False | Port | Integer | The port of which the game server is running on. | 27015 |
Single Server
{
"status": true,
"hostname": "{IP}",
"port": {PORT},
"cached": false
}
Multiple Servers
{
"{IP}:{PORT}": {
"status": true,
"hostname": "{IP}",
"port": {PORT},
"cached": false
},
"{IP2}:{PORT2}": {
"status": true,
"hostname": "{IP2}",
"port": {PORT2},
"cached": false
}
}
Single Server
{
"status": true,
"hostname": "{IP}",
"port": {PORT},
"players": {
"online": 3,
"max": 8
},
"cached": false
}
Multiple Servers
{
"{IP}:{PORT}": {
"status": true,
"hostname": "{IP}",
"port": {PORT},
"players": {
"online": 0,
"max": 8
},
"cached": false
},
"{IP2}:{PORT2}": {
"status": true,
"hostname": "{IP2}",
"port": {PORT2},
"players": {
"online": 6,
"max": 8
},
"cached": false
}
}
Single Server
{
"status": true,
"hostname": "{IP}",
"port": {PORT},
"name": "Alien Swarm Server",
"map": "ASI-Jac1-LandingBay_01",
"secure": true,
"password_protected": false,
"join": "steam://connect/{IP}:{PORT}/",
"version": "7.1.0.9",
"protocol": 17,
"players": {
"online": 3,
"max": 8
},
"cached": false
}
Multiple Servers
{
"{IP}:{PORT}": {
"status": true,
"hostname": "{IP}",
"port": {PORT},
"name": "Alien Swarm Server",
"map": "ASI-Jac1-LandingBay_01",
"secure": true,
"password_protected": false,
"join": "steam://connect/{IP}:{PORT}/",
"version": "7.1.0.9",
"protocol": 17,
"players": {
"online": 1,
"max": 8
},
"cached": false
},
"{IP2}:{PORT2}": {
"status": true,
"hostname": "{IP2}",
"port": {PORT2},
"name": "Alien Swarm Server",
"map": "ASI-Jac1-LandingBay_02",
"secure": true,
"password_protected": false,
"join": "steam://connect/{IP2}:{PORT2}/",
"version": "7.1.0.9",
"protocol": 17,
"players": {
"online": 2,
"max": 8
},
"cached": false
}
}