Skip to content

/v1/getMonthly

GET the current monthly layouts

Parameters

None

Response

A layouts object with the following properties:

NameTypeDescription
levelIdnumberThe ID of the layout.
levelNamestringThe name of the layout.
creatorUsernamestringThe username of the creator.
creatorAccountIdnumberThe account ID of the creator.
difficultynumberThe difficulty of the layout.
featurednumberWhether the layout is featured.
featuredScorenumberThe featured score of the layout.
typestringThe type of the layout.
dailybooleanWhether the layout is daily. (Always returns false)
weeklybooleanWhether the layout is weekly. (Always returns false)
monthlybooleanWhether the layout is monthly. (Always returns true)
timeLeftnumberThe time left in seconds.
json
{
  "layouts": [
    {
      "levelId": 124206392,
      "levelName": "DESTROY ME",
      "creatorUsername": "Navoltski",
      "creatorAccountId": 11683419,
      "difficulty": 25,
      "featured": 2,
      "featuredScore": 2130,
      "type": "classic",
      "daily": false,
      "weekly": false,
      "monthly": true,
      "timeLeft": 1751389
    }
  ]
}