Skip to contentSkip to navigationSkip to topbar
On this page

Invalid Emails


(warning)

This documentation is for the SendGrid Web API v2

We will deprecate this version on February 10, 2025. To access all the latest features and upcoming developments, please see our v3 API. For assistance with transitioning, refer to our migration guide.

This endpoint allows you to retrieve and delete entries in the Invalid Emails list.


Get

get page anchor

Retrieve a list of invalid emails with addresses and response codes, optionally with dates.

URI ParameterRequiredRequirementsDescription
dateNoMust be set to 1Retrieve the timestamp of the invalid email records. It will return a date in a MySQL timestamp format - YYYY-MM-DD HH:MM:SS
daysNoIf specified, must be an integer greater than 0Number of days in the past for which to retrieve invalid emails (includes today)
start_dateNoDate must be in YYYY-MM-DD format and be earlier than the end_date parameter.The start of the date range for which to retrieve invalid emails.
end_dateNoDate must be in YYYY-MM-DD format and be later than the start_date parameter.The end of the date range for which to retrieve invalid emails.
limitNoSome integerOptional field to limit the number of results returned.
offsetNoSome integerOptional beginning point in the list to retrieve from.
emailNoEmail address e.g. testing@example.comOptional email addresses to search for.
JSONXML

Call

GEThttps://api.sendgrid.com/api/invalidemails.get.json
GET Dataapi_user=apikey&api_key=your_sendgrid_api_key&date=1

Response

1
[
2
{
3
"reason": "Known bad domain",
4
"created": "2011-06-06 16:11:57",
5
"email": "test@example.com"
6
},
7
{
8
"reason": "Invalid address",
9
"created": "2012-08-17 11:04:38",
10
"email": "brandon"
11
}
12
]


Retrieve the count of invalid emails.

URI ParameterRequiredRequirementsDescription
start_dateNoDate must be in YYYY-MM-DD format and be earlier than the end_date parameter.The start of the date range for which to retrieve invalid emails.
end_dateNoDate must be in YYYY-MM-DD format and be later than the start_date parameter.The end of the date range for which to retrieve invalid emails.
JSONXML
GEThttps://api.sendgrid.com/api/invalidemails.count.json
GET Dataapi_user=apikey&api_key=your_sendgrid_api_key
1
{
2
"count": 2
3
}


Delete an address from the Invalid Email list.

URI ParameterRequiredRequirementsDescription
emailYesMust be a valid user account emailEmail Invalid Email address to remove
JSONXML
POSThttps://api.sendgrid.com/api/invalidemails.delete.json
POST Dataapi_user=apikey&api_key=your_sendgrid_api_key&email=emailToDelete@domain.com
1
{
2
"message": "success"
3
}