overview your first call subscribers mailing lists list ai campaigns sender profiles send campaign analytics insight

Analytics Data

After a campaign has been successfully delivered, analytics data on this campaign will become available. The analytics data contains a summary of subscriber interactions, such as reads, clicks and bounces.

Detailed reports are available inside your email blaster analytics suite. The API is able to provide summary headline figures.

Fetch Analytics Summary

The analytics summary API call provides headline figures of subscriber interactions relating to a specific campaign.

This request can be made with a GET call against the following URL:

https://api.emailblaster.cloud/2.0/analytics/summary/{id}
{id} in the URL should contain the campaign_id of desired report.

After a successful request, the following JSON response will be returned:

{
   "status":"ok",
   "data":{
      "campaign_id":"1357",
      "total_sent":"6782",
      "delivered":6705,
      "delivered_percent":98.86,
      "reads":"5967",
      "reads_percent":88.99,
      "reads_on_mobile":"3067",
      "reads_on_mobile_percent":36.55,
      "reads_on_desktop":"2801",
      "reads_on_desktop_percent":36.55,
      "reads_on_tablet":"89",
      "reads_on_tablet_percent":7.6,
      "clicks":"53",
      "clicks_percent":15.5,
      "social_clicks_facebook":4,
      "social_clicks_googleplus":9,
      "social_clicks_instagram":4,
      "social_clicks_linkedIn":6,
      "social_clicks_pinterest":4,
      "social_clicks_twitter":11,
      "social_clicks_youtube":7,
      "unsubscribes":"38",
      "unsubscribes_percent":0.77,
      "soft_bounces":65,
      "soft_bounces_percent":1.05,
      "hard_bounces":12,
      "hard_bounces_percent":0.34
   }
}
cloud