Get campaign performance
Get the performance of a campaign: delivery, opens, clicks and unsubscribes, with the matching rates.
Get the performance of a campaign: delivery, opens, clicks and unsubscribes, with the matching rates.
Every count is unique contacts rather than raw events, so a contact who opens the same email five times is counted once.
API Token authentication
Profile uuid parameter
550e8400-e09b-41d4-a716-400055000000Campaign uuid parameter
550e8400-e09b-41d4-a716-400055000000Success response
Campaign performance. Every count is unique contacts rather than raw events, so a contact who opens the same email five times is counted once.
Emails sent for this campaign, and the denominator of every rate below.
100Recipients this campaign was estimated to reach when sending started. Null for campaigns that have not started sending.
90010090283Contacts who opened this campaign.
80Contacts who clicked a link. Only clicks from contacts who also registered an open count.
10Contacts who unsubscribed through this campaign.
5Percentage of sent emails that were opened.
42.5Percentage of sent emails that got a click.
10Percentage of the contacts who opened that went on to click.
23.5Percentage of sent emails that led to an unsubscribe.
1.5falseUnauthenticated response
Error response
GET /api/reach/v1/profiles/{profileUuid}/campaigns/{campaignUuid}/statistics HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"total_sent": 100,
"estimated_total_recipients": 900,
"processed_count": 100,
"delivered_count": 90,
"dropped_count": 2,
"bounced_count": 8,
"soft_bounced_count": 3,
"opened_count": 80,
"clicked_count": 10,
"unsubscribed_count": 5,
"open_rate": 42.5,
"click_rate": 10,
"click_to_open_rate": 23.5,
"unsubscribe_rate": 1.5,
"has_bounced_contacts": false
}Last updated
Was this helpful?