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

# List Lists

> Enumerate every list (built-in and custom) visible to the current tenant.

```bash theme={null}
curl https://identity.contra.id/v1/lists \
  -H "x-api-key: $CONTRA_KEY"
```

## Response · 200

```json theme={null}
{
  "lists": [
    { "uuid": "lst_ofac",  "name": "OFAC SDN",     "type": "document", "policy": "auto_decline", "entries": 12483, "built_in": true },
    { "uuid": "lst_pep",   "name": "PEP Global",   "type": "name",     "policy": "review",       "entries": 84210, "built_in": true },
    { "uuid": "lst_a1b2",  "name": "Internal Block","type":"face",     "policy": "auto_decline", "entries": 17,    "built_in": false }
  ]
}
```
