Skip to main content
GET
/
worlds
/
{world}
Get a world
curl --request GET \
  --url https://api.wazoo.dev/worlds/{world} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "slug": "<string>",
  "label": "<string>",
  "createdAt": 123,
  "updatedAt": 123,
  "description": "<string>",
  "deletedAt": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

world
string
required

Response

Success

id
string
required
slug
string
required
label
string
required
createdAt
number
required
updatedAt
number
required
description
string | null
deletedAt
number | null