> ## 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 Source Lists

> The source lists available for screening

Unauthenticated and free. Returns each [source list](/introduction#source-lists)'s slug, display name, `list_type` (`sanctions`, `crime`, or `risk`), how it's maintained (`kind`: `fetched` or `curated`, plus its refresh `cadence`), entity count, and `last_updated` timestamp — including lists currently disabled (`"enabled": false`). The slugs are what the `lists` filter on every screening endpoint accepts.

```json Example response theme={null}
[
  {
    "slug": "ofac",
    "display_name": "US OFAC SDN",
    "list_type": "sanctions",
    "kind": "fetched",
    "cadence": "every 15 minutes",
    "enabled": true,
    "total": 20264,
    "last_updated": "2026-07-08T23:15:00Z"
  }
]
```
