Get player list.
GET/players
To get the player list.
Request
Responses
- 200
- 400
- 401
The player list.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
players
object[]
name string
The player name.
playerId string
The player ID.
userId string
The user ID.
ip string
The player IP address.
ping number
The player ping.
location_x number
The player location X.
location_y number
The player location Y.
level integer
Current player game level.
{
"players": [
{
"name": "PalUser",
"playerId": "AFAFD830000000000000000000000000",
"userId": "steam_00000000000000000",
"ip": "127.0.0.1",
"ping": 3.14,
"location_x": 123.45,
"location_y": 67.89,
"level": 1
}
]
}
Request error.
Unauthorized.
Loading...