> ## Documentation Index
> Fetch the complete documentation index at: https://developer.worldly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Limit bulk CSV data by assessment status and timestamp of last status change

> Filter FEM bulk CSV export by assessment status and last status change timestamp

```bash theme={null}
curl --request GET \
     --url https://api-v2.production.higg.org/api/v1/modulecsv/fem \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --header 'x-api-key: <<apiKey>>'
     --header 'x-developer-request-token: <<apiKey>>'
     -d '{
        "status": ["VRF"],
        "lastStatusChange": 1651395600000
        }'
```

```json theme={null}
{"success":true}
```

<Steps>
  <Step title="Enter your API key">
    Set the authentication headers with your API key and developer request token:

    ```bash theme={null}
    --header 'x-api-key: <<apiKey>>'
    --header 'x-developer-request-token: <<apiKey>>'
    ```
  </Step>

  <Step title="Identify which statuses you want returned">
    In this example, we have limited to only those assessments in "VRF" status.

    ```json theme={null}
    "status": ["VRF"],
    ```
  </Step>

  <Step title="Identify a timestamp for the last status change">
    Filter for records that have changed status since the provided timestamp. Timestamp must be in unix time in milliseconds.

    ```json theme={null}
    "lastStatusChange": 1651395600000
    ```
  </Step>
</Steps>
