v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
Campaign
Analytics

Get daily campaign analytics

Get campaign daily analytics

get/api/v2/campaigns/analytics/daily

Query parameters

campaign_idstring uuid
Example:019f94cd-ae24-70cb-b25d-a525d75b2bf9

Campaign ID (optional). Leave this field empty to get the analytics for all campaigns

start_datestring
Example:2024-01-01

Start date

end_datestring
Example:2024-01-01

End date

campaign_status-99 | -1 | -2 | 0 | 1 | 2 | 3 | 4
Example:1

Filter by campaign status (only the analytics for the campaigns with the specified status will be returned)

Response

Default Response

datestring

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

sentinteger

The total number of sent emails

contactedinteger

The total number of unique contacts who received an email that day

new_leads_contactedinteger

The total number of new leads contacted that day

openedinteger

The total number of opened emails

unique_openedinteger

The total number of unique opened emails

repliesinteger

The total number of replies

unique_repliesinteger

The total number of unique replies

replies_automaticinteger

The total number of automatic replies detected

unique_replies_automaticinteger

The total number of unique automatic replies detected

clicksinteger

The total number of links clicked

unique_clicksinteger

The total number of unique links clicked. Unique meaning from unique leads, not unique links. For instance, if a lead clicked a link 3 times, it will be counted as 1 unique click. If a lead clicked 3 different links, it will still be counted as 1 unique click

opportunitiesinteger

The total number of unique opportunities created from the campaign on that day

unique_opportunitiesinteger

The total number of unique opportunities created from unique leads from the campaign on that day

Example response

[
  {
    "date": "2025-03-01",
    "sent": 5421,
    "contacted": 5000,
    "new_leads_contacted": 200,
    "opened": 99,
    "unique_opened": 60,
    "replies": 60,
    "unique_replies": 60,
    "replies_automatic": 5,
    "unique_replies_automatic": 4,
    "clicks": 60,
    "unique_clicks": 60,
    "opportunities": 5,
    "unique_opportunities": 3
  }
]