GET
/
v1
/
levels
/
{ids}
curl --request GET \
  --url https://api.adventure-builder.net/v1/levels/{ids}
[
  {
    "id": 123,
    "title": "<string>",
    "builder": 123,
    "thumbnail": 123,
    "plays": 123,
    "featured": true,
    "theme": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]
The API currently does not require an API-key.

Path Parameters

ids
integer[]
required

Array of level IDs (max 10).

Response

200
application/json
Array of level data
id
integer
required

The unique ID of the level.

title
string

The title of the level.

builder
integer

The ID of the builder who created the level.

thumbnail
integer

The thumbnail ID of the level.

plays
integer

The number of times the level has been played.

Whether the level is featured.

theme
string

The theme of the level.

createdAt
string

The timestamp when the level was created.