Skip to Content
API ReferenceSuppressionList suppressed addresses

List suppressed addresses

GET /api/v1/partner/email/suppression

Query parameters

FieldTypeNotes
reasonstringBOUNCE / COMPLAINT / UNSUBSCRIBE / MANUAL
searchstringCase-insensitive substring match on email
limitint1-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"