Skip to main content
GET
/
v1
/
levels
/
{ids}
cURL
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<int32>[]
required

Array of level IDs (max 10).

Maximum array length: 10

Response

Array of level data

id
integer<int32>
required

The unique ID of the level.

title
string

The title of the level.

builder
integer<int32>

The ID of the builder who created the level.

thumbnail
integer<int64>

The thumbnail ID of the level.

plays
integer<int32>

The number of times the level has been played.

Whether the level is featured.

theme
string

The theme of the level.

createdAt
string<date-time>

The timestamp when the level was created.