Retrieve game world info
GET/v1/worldInfo
Returns general game world information.
Request
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: >= 1
The current in-game day.
Possible values: [morning, afternoon, night, unknown]
The current in-game day cycle.
Possible values: non-empty
Name of the game world.
Possible values: non-empty
Name of the game world seed.
Possible values: non-empty
List of world keys.
globalKeys
GlobalKey[]
List of global keys.
Possible values: non-empty, [activebosses, defeated_eikthyr, defeated_gdking, defeated_bonemass, defeated_dragon, defeated_goblinking, defeated_queen, killedtroll]
Name of the global key.
Value of the global key. For the majority of keys, the value will be an empty string.
If the key name matches activebosses, the corresponding value will be an integer, such as "1"
{
"dayNumber": 12,
"dayCycle": "morning",
"worldName": "Dedicated",
"seedName": "3BdkT6jHFn",
"worldKeys": [
"string"
],
"globalKeys": [
{
"name": "activebosses",
"value": "string"
}
]
}