---
title: "Retrieve a suppressed address"
description: "One row of the suppression list, by id."
url: "https://openemail.uk/docs/api/suppressions/get"
area: "API"
category: "Mailbox"
---

# Retrieve a suppressed address

One row of the suppression list, by id.

`GET /suppressions/{id}`

## GET /suppressions/{id}

One row of the suppression list, by id.

## Example

Needs `settings:read`. `removable` says whether it can be taken off, and it is false for a hard bounce.

**curl**

```
curl "$OE/suppressions/7b1e2c3d-4f5a-4b6c-8d7e-9f0a1b2c3d4e" -H "$AUTH"
```

**Response**

```
{
  "object": "suppression",
  "id": "7b1e2c3d-4f5a-4b6c-8d7e-9f0a1b2c3d4e",
  "email": "ada@example.com",
  "reason": "complaint",
  "detail": "abuse",
  "removable": true,
  "createdAt": "2026-09-12T08:41:03.000Z"
}
```

> An id that is not on this workspace is a 404.
