Skip to main content
curl --request POST \
     --url https://api-v2.production.higg.org/api/v1/moduledata/fem \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --header 'x-api-key: <<apiKey>>'
     --header 'x-developer-request-token: <<apiKey>>'
     -d '{
    "lastUpdated": 1619856000000,
    "from": 0,
    "size": 10
}'
{
    "from": 0,
    "size": 10,
    "total": 1,
    "assessments": [
        {
            "id": "femsurvey:7b983968-5865-49f2-8d7b-411d67eb0947",
            "statusHistory": {
                "NS": "2021/04/27",
                "ASI": "2021/04/27",
                "ASC": "",
                "VRP": "",
                "VRQ": "",
                "VRE": "",
                "VRC": "",
                "VRF": "",
                "VRD": "",
                "VRI": "",
                "ASD": ""
            },
            "status": "ASI",
            "version": "fem2020",
            "accountId": "REDACTED",
            "accountName": "REDACTED",
            "sacId": REDACTED,
            "country": "Philippines",
            "selfPosted": false,
            "verifiedPosted": false,
            "verified": true,
            "lastUpdated": 1624002126417,
            "location": {
                "address": "unknownAddressNumber1; unknowncity",
                "vicinity": "Angeles",
                "country": "Philippines",
                "placeid": "REDACTED"
            }
        }
    ]
}
1

Set your API key

Set the authentication headers with your API key and developer request token:
--header 'x-api-key: <<apiKey>>'
--header 'x-developer-request-token: <<apiKey>>'
2

Set your timestamp

This must be in unix time in milliseconds. A tool like https://www.epochconverter.com/ might be helpful.
"lastUpdated": 1619856000000,