Skip to main content
GET
/
v1
/
worlds
List your worlds
curl --request GET \
  --url https://api.alakazam.gg/v1/worlds \
  --header 'Authorization: Bearer <token>'
{
  "worlds": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "slug": "<string>",
      "name": "<string>",
      "description": "<string>",
      "cover": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

An app API key, e.g. Authorization: Bearer sk_live_…. Secret (sk_) for writes/sessions; publishable (pk_) for read/embed.

Query Parameters

limit
integer
default:20
Required range: x <= 100
cursor
string

created_at of the last row from the previous page.

Response

A page of worlds

worlds
object[]
nextCursor
string | null