Special Draw Date API
Returns the list of special draw dates.
| Method | GET |
| Path | /api/v1/specialDraw |
| Full URL | https://backend.4dnum.com/api/v1/specialDraw |
Request
No parameters.
Response
| Attribute | Type | Example | Description |
|---|---|---|---|
| (root) | Array of String | see below | Every 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