Skip to contentSkip to navigationSkip to topbar
On this page

Get Total Contact Count



Operation overview

operation-overview page anchor

GET/v3/marketing/contacts/count

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

This endpoint returns the total number of contacts you have stored.

Twilio SendGrid recommends exporting your contacts regularly as a backup to avoid issues or lost data.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>
200401403404500
Schema
Property nameTypeRequiredDescriptionChild properties
contact_countinteger

The total number of contacts.


billable_countinteger

The count of contacts this month for billing purposes.

Minimum: 0Default: 0

billable_breakdownobject

billable_breakdown will only appear to the parent user in an account with subusers.

Get Total Contact CountLink to code sample: Get Total Contact Count
1
const client = require('@sendgrid/client');
2
client.setApiKey(process.env.SENDGRID_API_KEY);
3
4
5
const request = {
6
url: `/v3/marketing/contacts/count`,
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
});