Pass Result API
Gets a past result for a given date.
| Method | GET |
| Path | /api/v1/result/{date} |
| Full URL | https://backend.4dnum.com/api/v1/result/{date} |
Request
| Attribute | Type | Mandatory | Example | Description |
|---|---|---|---|---|
date | String | No | 2024-03-14 | Result date, YYYY-MM-DD. |
Response
Identical to the shared result payload — see Result Fields.
Example
curl https://backend.4dnum.com/api/v1/result/2024-03-14
const results = await get('/result/2024-03-14');
results.forEach(r => console.log(r.type, r.fdData.n1));