Skip to main content
GET
/
campaigns
/
:id
/
performance
Performance Data
curl --request GET \
  --url https://api-prod.syntr.co/api/v1/email-marketing/campaigns/:id/performance \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "campaign": {
      "id": "902b-8ccf",
      "name": "Summer Sale",
      "status": "completed"
    },
    "performance": {
      "total_sent": 45000,
      "delivered": 44900,
      "open_rate": 0.15,
      "click_rate": 0.02
    }
  }
}
{
  "success": true,
  "data": {
    "campaign": {
      "id": "902b-8ccf",
      "name": "Summer Sale",
      "status": "completed"
    },
    "performance": {
      "total_sent": 45000,
      "delivered": 44900,
      "open_rate": 0.15,
      "click_rate": 0.02
    }
  }
}