Skip to main content

Pass Result API

Gets a past result for a given date.

MethodGET
Path/api/v1/result/{date}
Full URLhttps://backend.4dnum.com/api/v1/result/{date}

Request

AttributeTypeMandatoryExampleDescription
dateStringNo2024-03-14Result 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));