v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
Account
Analytics

Get daily account analytics

Get daily account analytics showing the number of emails sent per day for each email account. Useful for tracking daily sending activity across your accounts.

get/api/v2/accounts/analytics/daily

Query parameters

start_datestring
Example:2024-01-01

Start date for the analytics period. Defaults to a 30-day window ending at end_date. The maximum range is 31 days.

end_datestring
Example:2024-01-31

End date for the analytics period. Defaults to the current date.

emailsstring[]

Email accounts to include. This filter is required and accepts at most 200 unique accounts.

[
  "user@example.com"
]

Response

Default Response

datestring required

The date of the analytics entry, in YYYY-MM-DD format

email_accountstring required

The email account that sent the emails

sentinteger required

The total number of campaign emails sent on this date by this account, including emails for subsequences

bouncedinteger required

The number of emails that bounced on this date for this account for campaigns - including subsequences

contactedinteger required

The total number of unique contacts who received an email on this date from this account

new_leads_contactedinteger required

The total number of new leads contacted on this date from this account

openedinteger required

The total number of opened emails on this date for this account

unique_openedinteger required

The total number of unique opened emails on this date for this account

repliesinteger required

The total number of replies received on this date for this account

unique_repliesinteger required

The total number of unique replies received on this date for this account

replies_automaticinteger required

The total number of automatic replies detected on this date for this account

unique_replies_automaticinteger required

The total number of unique automatic replies detected on this date for this account

clicksinteger required

The total number of links clicked on this date for this account

unique_clicksinteger required

The total number of unique links clicked on this date for this account. Unique meaning from unique leads, not unique links

Example response

[
  {
    "date": "2024-01-15",
    "email_account": "user@example.com",
    "sent": 150,
    "bounced": 3,
    "contacted": 120,
    "new_leads_contacted": 50,
    "opened": 99,
    "unique_opened": 60,
    "replies": 8,
    "unique_replies": 7,
    "replies_automatic": 2,
    "unique_replies_automatic": 1,
    "clicks": 30,
    "unique_clicks": 20
  }
]