v1
latestOpenAPI 3.1.02026-07-2617125852.3 KBAccount
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
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
}
]