Skip to main content

Hot Number Listing

Lists the hot (most frequently drawn) numbers for a company and year.

MethodGET
Path/api/v1/hotNumber/{type}/{prize}/{years}/{digit}
Full URLhttps://backend.4dnum.com/api/v1/hotNumber/{type}/{prize}/{years}/{digit}

Request

AttributeTypeMandatoryExampleDescription
typeStringYesMAbbreviation company name. See Company Codes.
prizeStringYes11 = 1st, 2nd and 3rd prize only. 0 = include 1st, 2nd, 3rd, Special and Consolation.
yearsStringYes2024The year to search.
digitStringYes43 = 3-digit numbers only, 4 = 4-digit numbers only.
caution

prize=1 narrows the search to the top three prizes; prize=0 widens it to all prize tiers. The 0/1 reads backwards from the usual on/off convention — check this parameter carefully.

Response

AttributeTypeExampleDescription
numString4186The winning number.
totalInteger1How many times the number has been a winning number.

Example

curl https://backend.4dnum.com/api/v1/hotNumber/M/1/2024/4
[
{ "num": "4186", "total": 1 }
]