Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Retrieve stats by a specific client type.



API Overview

api-overview page anchor

Tracking your emails is an important part of being a good sender and learning about how your users interact with your email. This includes everything from basics of clicks and opens to looking at which browsers and mailbox providers your customers use.

We have broken up statistics in specific ways so that you can get at-a-glance data, as well as allowing you to get into the details of how your email is being used.

(information)

Info

Category statistics are available for the previous thirteen months only.


GET/v3/clients/{client_type}/stats

Base url: https://api.sendgrid.com

This endpoint allows you to retrieve your email statistics segmented by a specific client type.

We only store up to 7 days of email activity in our database. By default, 500 items will be returned per request via the Advanced Stats API endpoints.

Available Client Types

available-client-types page anchor
  • phone
  • tablet
  • webmail
  • desktop

Advanced Stats provide a more in-depth view of your email statistics and the actions taken by your recipients. You can segment these statistics by geographic location, device type, client type, browser, and mailbox provider. For more information about statistics, please see our Statistics Overview.


Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>

on-behalf-ofstringOptional

The on-behalf-of header allows you to make API calls from a parent account on behalf of the parent's Subusers or customer accounts. You will use the parent account's API key when using this header. When making a call on behalf of a customer account, the property value should be "account-id" followed by the customer account's ID (e.g., on-behalf-of: account-id <account-id>). When making a call on behalf of a Subuser, the property value should be the Subuser's username (e.g., on-behalf-of: <subuser-username>). See On Behalf Of for more information.

Property nameTypeRequiredDescription
client_typeenum<string>required

Specifies the type of client to retrieve stats for. Must be either "phone", "tablet", "webmail", or "desktop".

Possible values:
phonetabletwebmaildesktop
Property nameTypeRequiredDescription
start_datestringrequired

The starting date of the statistics to retrieve. Must follow format YYYY-MM-DD.


end_datestringOptional

The end date of the statistics to retrieve. Defaults to today. Must follow format YYYY-MM-DD.


aggregated_byenum<string>Optional

How to group the statistics. Must be either "day", "week", or "month".

Possible values:
dayweekmonth
200
SchemaExample

Array of:

Property nameTypeRequiredDescriptionChild properties
datestring

The date that the statistics were gathered.


statsarray[object]

The list of statistics.

Retrieve stats by a specific client type.

retrieve-stats-by-a-specific-client-type page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_22
const client = require('@sendgrid/client');
_22
client.setApiKey(process.env.SENDGRID_API_KEY);
_22
_22
const client_type = "phone";
_22
const queryParams = {
_22
"start_date": "2010-01-22"
_22
};
_22
_22
const request = {
_22
url: `/v3/clients/${client_type}/stats`,
_22
method: 'GET',
_22
qs: queryParams
_22
}
_22
_22
client.request(request)
_22
.then(([response, body]) => {
_22
console.log(response.statusCode);
_22
console.log(response.body);
_22
})
_22
.catch(error => {
_22
console.error(error);
_22
});


Rate this page: