# List the block list

> The do-not-contact entries the send and research gates enforce, newest first.

Canonical: https://revnu.com/docs/blocklist

```bash
curl -H "Authorization: Bearer $REVNU_API_TOKEN" "https://revnu.com/api/v1/blocklist?limit=50"
```

## Query

| Parameter | Meaning |
|---|---|
| `limit` | Rows per page, 1 to 200. Default 50. |
| `cursor` | The `nextCursor` from the previous page. |

## Response

`{ "entries": [entry, …], "nextCursor": "…" | null }`. An entry is `{ id, kind, value, reason, source, addedBy, addedAt }`. `kind` is `domain` or `email`; `source` says who added it: `customer_import`, `customer` (dashboard), `agent`, `opt_out_reply` (a provider-reported unsubscribe) or `api`.

## Frequently asked questions

### What does an entry block?

A domain blocks every person at that company and at its subdomains. An email blocks one mailbox. Both apply to first touches: the send path refuses, and research skips the company before spending anything.

### Which scope does this need?

`leads:read`. A token without it gets `403` with `requiredScope` in the body. `GET /me` shows a token's scopes.

### Are responses cached?

No. Every response is `Cache-Control: no-store`, so what you read is current.
