Skip to contentSkip to navigationSkip to topbar
On this page

Get Bulk Email Address Validation Jobs



API Overview

api-overview page anchor

Email Address Validation is available to Email API Pro and Premier level accounts only. An Email Validation API key is required. See the Email Address Validation overview page for more information.

The Email Address Validation API provides detailed information about the validity of email addresses, which helps you create and maintain contact lists and reduce bounce rates.

The Bulk Email Address Validation API facilitates the asynchronous validation of up to one million email addresses.

With the Bulk Email Address Validation API, you can:

  • Request an upload URL for the email list you wish to verify.
  • Get all Bulk Email Address Validation Jobs.
  • Get a specific Bulk Email Address Validation Job.
  • This API reference page should be used in conjunction with the Email Address Validation Overview page and the Bulk Email Validation Integration Guide .

GET/v3/validations/email/jobs

Base url: https://api.sendgrid.com (The Twilio SendGrid v3 API)

This endpoint returns a list of all of a user's Bulk Email Validation Jobs.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>
200404500

The request was successful. The response contains a list of all of your Bulk Email Validation Jobs.

SchemaExample
Property nameTypeRequiredDescriptionChild properties
resultarray[object]
Get all bulk email address validation jobsLink to code sample: Get all bulk email address validation jobs
1
const client = require('@sendgrid/client');
2
client.setApiKey(process.env.SENDGRID_API_KEY);
3
4
5
const request = {
6
url: `/v3/validations/email/jobs`,
7
method: 'GET',
8
9
}
10
11
client.request(request)
12
.then(([response, body]) => {
13
console.log(response.statusCode);
14
console.log(response.body);
15
})
16
.catch(error => {
17
console.error(error);
18
});