# Reference Data

These methods return provider-level configuration and are useful for populating admin dashboards, syncing local rule caches, or validating that your integration is correctly scoped.

#### listSupportedAssets

Returns the full list of assets the current provider can screen against. Use this to verify coverage before submitting an analysis scoped to a specific chain or token.

```
const assets = await amlClient.listSupportedAssets();
```

#### listRiskRules

Returns the set of risk rules the provider evaluates against. Pass `includeIdMap: true` to receive a mapping of rule IDs to their human-readable labels — useful for rendering flagged-rule details in an internal compliance UI.

```
const riskRules = await amlClient.listRiskRules({ includeIdMap: true });
```

#### listCriteriaCategories

Returns the available risk-criteria categories (e.g., sanctions, darknet, stolen funds). These categories are used by the provider to classify exposure sources in wallet and transaction analyses.

```
const categories = await amlClient.listCriteriaCategories();
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://city-protocol.gitbook.io/docs/software-development-kit/aml/reference-data.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
