Skip to main content

Special Draw Date API

Returns the list of special draw dates.

MethodGET
Path/api/v1/specialDraw
Full URLhttps://backend.4dnum.com/api/v1/specialDraw

Request

No parameters.

Response

AttributeTypeExampleDescription
(root)Array of Stringsee belowEvery date in the array is a special draw date.
[
"2024-05-28",
"2024-06-25",
"2024-08-13",
"2024-10-29",
"2024-12-31"
]

Example

curl https://backend.4dnum.com/api/v1/specialDraw
const specialDraws = new Set(await get('/specialDraw'));
const isSpecial = specialDraws.has('2024-12-31'); // true