## List blocked handles

`blocked_handles.list()  -> BlockedHandleListResponse`

**get** `/v3/blocked_handles`

Returns all handles you have blocked. Inbound messages from a blocked
handle are dropped and produce no webhooks, and direct sends to a
blocked handle are rejected with `403` (error code `2026`). Group
sends that include unblocked members are not restricted.

### Returns

- `class BlockedHandleListResponse: …`

  - `blocked_handles: List[BlockedHandleEntry]`

    All handles blocked by the partner, newest first

    - `blocked_at: datetime`

      When the handle was blocked

    - `handle: str`

      The blocked handle, normalized (E.164 phone, lowercased email, short code, or sender ID)

    - `reason: Optional[str]`

      Optional note recorded when the handle was blocked

### Example

```python
import os
from linq import LinqAPIV3

client = LinqAPIV3(
    api_key=os.environ.get("LINQ_API_V3_API_KEY"),  # This is the default and can be omitted
)
blocked_handles = client.blocked_handles.list()
print(blocked_handles.blocked_handles)
```

#### Response

```json
{
  "blocked_handles": [
    {
      "handle": "+12025551234",
      "reason": "spam",
      "blocked_at": "2026-07-30T16:42:00Z"
    }
  ]
}
```
