Skip to content

/v1/getDaily

GET the current daily 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 true)
weeklybooleanWhether the layout is weekly. (Always returns false)
monthlybooleanWhether the layout is monthly. (Always returns false)
timeLeftnumberThe time left in the daily layout.
json
{
  "layouts": [
    {
      "levelId": 96174612,
      "levelName": "Calm",
      "creatorUsername": "Xeroniuss",
      "creatorAccountId": 14025375,
      "difficulty": 9,
      "featured": 1,
      "featuredScore": 4231,
      "type": "classic",
      "daily": true,
      "weekly": false,
      "monthly": false,
      "timeLeft": -1035181
    },
    {
      "levelId": 130880047,
      "levelName": "Rafael Edward Cruz",
      "creatorUsername": "HalieyWelch",
      "creatorAccountId": 30178409,
      "difficulty": 9,
      "featured": 0,
      "featuredScore": 0,
      "type": "platformer",
      "daily": true,
      "weekly": false,
      "monthly": false,
      "timeLeft": -1035147
    }
  ]
}