List all players
GET/v1/players
Returns a list of in-game players.
Request
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
entries
Player[]
List of players.
id uuid
Unique identifier of the player.
characterId string
Unique identifier of the character.
name string
Possible values: non-empty
Name of the player.
steamId string
Possible values: non-empty
Steam identifier (64 bits) of the player.
health float
Health value of the player.
maxHealth float
Maximum health value of the player.
stamina float
Stamina value of the player.
{
"entries": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"characterId": 34512,
"name": "Thor",
"steamId": 76561197960287940,
"health": 60,
"maxHealth": 100,
"stamina": 30
}
]
}
Loading...