# List email bounces

`GET https://api.cademi.com.br/api/v3/reports/email-bounces`

Operation ID: `reports.email_bounces.list` · API v3

Returns user email addresses that bounced, were dropped, were reported as spam, or were deferred.

By default, only email bounces that have not been ignored are returned. Set `ignored=true` to list ignored email bounces instead.

The `email` field is included only when the credentials also have the `users.read_personal` permission.

Required permissions: `reports.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |
| `sort` | query | string, one of `id`, `-id` | no |  |
| `ignored` | query | boolean | no |  |

## Responses

### 200

Returns the collection of email bounces.

Body: `data`: array of EmailBounce.

Fields of EmailBounce:

| Field | Type | Required | Description |
|---|---|---|---|
| `email` | string or null | no | Returned only when the credential has the users.read_personal permission; otherwise the key is omitted. |
| `id` | string | yes | Public ID of the bounce record, prefixed with bnc_. |
| `ignored` | boolean | yes |  |
| `kind` | string, one of `bounced`, `dropped`, `spam`, `deferred` | yes |  |
| `last_bounce_at` | string (date-time) | yes |  |
| `object` | string, one of `email_bounce` | yes |  |
| `revision` | string | yes |  |
| `user_id` | string or null | yes | Public ID of the affected user, prefixed with usr_. |

### 400

The cursor is invalid or the request contains an unsupported query parameter.

Body: Error.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 422

The request body or query parameters failed validation.

Body: ValidationFailed.

Full schema: https://cademi.dev/openapi/v3.json
