Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The unique identifier for the game.
"game123"
Query Parameters
(Optional) The player's session ID.
"60Z5aZjIuFlyYbjbZZKe"
Body
The world data required to create a new world.
Background lore or story of the world.
"A world where magic and technology coexist."
The name of the world.
"Eldoria"
A comma-separated list of creatures found in the world.
"Dragons, Elves"
A list of worlds that are similar in theme or style.
Response
World created successfully.
Confirmation message for world creation.
"World: world456 has been created with the following context."
UID of the world.
"world456"
The context details of the created world.
{
"lore": "A world where magic and technology coexist.",
"name": "Eldoria",
"creatures": "Dragons, Elves",
"similarWorlds": ["Middle Earth"]
}