> ## 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.

# Get FSLM Module Data

## Specify what data fields to return (include)

```text theme={null}
        "scores"
    ],
```

<Note title="include">
  Specify an array of which groups of indicators to retrieve for an assessment.

  * `questions` will return [ALL indicators](/v0.1/docs/fslm-data-dictionary). This can be VERY large. Indicator names are same as in bulk CSV and prefixed by 'questions.'
  * `scores` will return all total, section, and subsection level [scores](/v0.1/docs/fslm-data-dictionary#scores)
  * `focus_areas` will return all indicators grouped in [risk levels](/v0.1/docs/fslm-data-dictionary#focus-areas)
</Note>

Note that this be limited down to individual indicators.

```text theme={null}
        "questions.FP-BI-3",
        "questions.FP-BS-10",
        "questions.FP-BS-4",
    ],
```

## Specify which records to return (query)

<Note title="version">
  Specify a single module category of data to retrieve (`fslm`).
</Note>

<Note title="cafVersion">
  The FSLM uses the SLCP Converged Assessment Framework (CAF). This framework is versioned. This parameter can be used to query for a single CAF version. Options are: `1.3`, `1.4`, `1.5`
</Note>

<Note title="status">
  An array of assessment statuses to query for.
</Note>

<Note title="verified">
  Boolean filter for verified (true) or unverified (false) assessments
</Note>

<Note title="accountIds">
  Specify an array of account identifiers to retrieve assessments for. The following Higg account identifiers are supported as being queryable: `sacId` (0-6 digit number auto-assigned to every Higg account), `accountId` (longer UUID auto-assigned to every Higg account), `oarId` (15-character unique identifier assigned to each facility in the [Open Supply Hub](https://opensupplyhub.org/)), `taxId` (a government issued tax identifier), `socialCreditId` (a state-issued identifier in China), `customId` (a custom identifier that can be assigned to another Higg account, only visible to the author).
  For example: `"accountIds": ["accountId","sacID","oarID","taxId","socialCreditId","customId"]`
</Note>

<Note title="assessmentIds">
  Specify an array of specific assessments to retrieve data from. If not specified, retrieves all assessments of specified `rfi_pid` (subject to other query specifiers). Note that this can have unintuitive side-effects if you specify assessment ID's that do not come from the specified Account ID's.
</Note>

<Note title="lastUpdated">
  Filter for records that have been updated since the provided timestamp. Timestamp must be in unix time in milliseconds.
</Note>

<Note title="lastStatusChange">
  Filter for records that have changed status since the provided timestamp. Timestamp must be in unix time in milliseconds
</Note>

<Note title="from">
  Integer value of where to start the window of results. If not specified, defaults to 0.
</Note>

<Note title="size">
  Integer value of how many results to return. If not specified, defaults to 10.\
  **Note: Maximum number of results returned is 30.**
</Note>

## Sort the response

<Note title="created_on">
  Sort the returned data by the date on which the assessment was created. Supports `ASC` and `DESC`.
  Example: `"sort": [{ "field": "created_on", "value": "desc" }],`
</Note>
