The SendGrid Engagement Quality (SEQ) API allows you to retrieve metrics that define the quality of your email program.
An SEQ score is correlated with:
Because "wanted" email and deliverability are closely related, a higher SEQ metric is correlated with greater deliverability. This means the higher your SEQ score, the more likely you are to land in your recipients' inboxes. See the SEQ Overview page to understand SEQ, how it's calculated, and how you can address your score. The SEQ endpoints allow you to retrieve your scores and scores for your Subusers.
SendGrid Engagement Quality (SEQ) scores are stored for a maximum of 90 days.
The SendGrid Engagement Quality API is available across all SendGrid plans, including the free tier. If the API does not return a score, it's likely that you have not enabled open tracking, or your account is not meeting the activity threshold required to generate a score.
To receive an SEQ score, the SendGrid account or Subuser must:
This operation allows you to retrieve SendGrid Engagement Quality (SEQ) scores for your Subusers or customer accounts for a specific date.
A successful request with this API operation will return either a 200
or 202
response.
This operation returns a 202
response when SendGrid does not yet have scores available for the specified date range. Scores are calculated asynchronously from requests to this endpoint. This means a score may be available for the specified date at a later time, but a score is not available at the time of your API request.
A 200
response will include scores for all Subusers or customer accounts belonging to the requesting parent or reseller account. The score
and metrics
properties will be omitted from the response if a Subuser or customer account is not eligible to receive a score for the specified date.
The score
property represents a Subuser or customer account's overall engagement quality. The metrics
property provides additional scores for the input categories that contribute to that overall score. All scores range from 1
to 5
with a higher number representing better engagement quality.
See SendGrid Engagement Quality Overview for more information
Bearer <<YOUR_API_KEY_HERE>>
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.
Specifies the number of results to be returned by the API. This parameter can be used to limit the results returned or in combination with the after_key
parameter to iterate through paginated results.
0
Maximum: 1000
Default: 1000
The date in YYYY-MM-DD format (UTC) for which you want to retrieve a SendGrid Engagement Quality score.
Specifies which items to be returned by the API. When the after_key
is specified, the API will return items beginning from the first item after the item specified. This parameter can be used in combination with limit
to iterate through paginated results.
Example response
An array of objects containing SendGrid Engagement Quality scores and their associated data.
This object contains response metadata. The presence of the after_key
property in the metadata indicates that some items are still outstanding and have not been retrieved. You can use the after_key
value to retrieve additional items with another request.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const queryParams = {5"limit": 1000,6"date": "2014-02-04"7};89const request = {10url: `/v3/engagementquality/subusers/scores`,11method: 'GET',12qs: queryParams13}1415client.request(request)16.then(([response, body]) => {17console.log(response.statusCode);18console.log(response.body);19})20.catch(error => {21console.error(error);22});