List suppressed addresses
GET /api/v1/partner/email/suppressionQuery parameters
| Field | Type | Notes |
|---|---|---|
reason | string | BOUNCE / COMPLAINT / UNSUBSCRIBE / MANUAL |
search | string | Case-insensitive substring match on email |
limit | int | 1-1000, default 200 |
Response
{
"success": true,
"suppression": [
{
"email": "deadbox@example.com",
"reason": "BOUNCE",
"details": "550 5.1.1 user unknown",
"added_at": "2026-05-03T11:30:00Z"
},
{
"email": "spammed@example.com",
"reason": "COMPLAINT",
"details": "FBL/abuse",
"added_at": "2026-05-03T11:35:00Z"
}
],
"count": 2
}cURL
curl 'https://apis.splashifypro.com/api/v1/partner/email/suppression?reason=BOUNCE&limit=50' \
-H "Authorization: Bearer $SPLASHIFY_API_KEY"