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

# List Entities

> The full current dataset for one source list, as JSON or CSV

Unauthenticated and free. Returns every identifier currently on one [source list](/introduction#source-lists) — the dataset behind the screening endpoints, published for reference and download. Delisted identifiers are excluded (they appear on [`/delisted`](/api/delisted) instead). Unknown or disabled lists return `404`.

<ParamField path="slug" type="string" required>
  A [list slug](/api/screen/lists), e.g. `ofac` or `il_mod_crypto`.
</ParamField>

<ParamField query="format" type="string">
  `json` (default) or `csv`. The CSV has fixed `value`, `entity_type`, `listed_at`, `source_url` columns plus one column per metadata key the list carries.
</ParamField>

<ParamField query="limit" type="integer">
  Maximum entities to return (default 5000, max 100000). `total` always reports the full list size.
</ParamField>

```json Example response theme={null}
{
  "list": "il_mod_crypto",
  "list_name": "Israel NBCTF seized crypto wallets",
  "list_type": "sanctions",
  "total": 691,
  "last_updated": "2026-07-13T06:51:56Z",
  "entities": [
    {
      "entity_type": "onchain_address",
      "value": "TKMWbz1VsE7zBQmQ6daFUiEoqfT3z8ZqBE",
      "metadata": {
        "symbol": "TRX",
        "name": "NBCTF seizure order 43/25",
        "published": "2025-09-03"
      },
      "source_url": "https://nbctf.mod.gov.il/he/MinisterSanctions/PropertyPerceptions/Pages/Blockchain.aspx",
      "listed_at": "2026-07-13T06:51:56Z"
    }
  ]
}
```
