Skip to content

getGJDailyLevel.php

Gets which daily level we're on and gets how much time is left.

Parameters

ParameterExplanationRequired
secretCommon Secret: Wmfd2893gb7Yes
gameVersion22
binaryVersion47
dvs3
accountIDThe user's account ID
gjp2The user's GJP2
type0 for daily, 1 for weekly, 2 for event level.
chk (required for type 2)Rewards CHK using the chest rewards key
weekly0 for daily, 1 for weekly. Defaults to 0 if not sent. This parameter is outdated since 2.207

Response

Returns the index of the current daily level and the time left in seconds, separated by a pipe |.

Event levels also return the reward chest data and an integrity hash. Time left will always be 10 for event levels.

Example

Python

py
import requests
url = "https://www.boomlings.com/database/getGJDailyLevel.php"
data = {
    "secret": "Wmfd2893gb7",
    "type": "2"
}
headers = {
    "User-Agent": ""  # Empty User-Agent
}

response = requests.post(url, data=data, headers=headers)
print(response.text)

curl

plain
curl -X POST https://www.boomlings.com/database/getGJDailyLevel.php -d "secret=Wmfd2893gb7&type=2" -A ""

Response

py
2959|19186

Changelog

2.207

In 2.207, the weekly parameter (0 for daily, 1 for weekly) was replaced with the type parameter. A chk is now sent when the type is 2 (event levels).