ArgorantDocs

Campaign analytics

gethttps://app.argorant.com/api/v1/campaigns/{campaign_id}/analytics
GET
/api/v1/campaigns/{campaign_id}/analytics

A daily series for the campaign: sent, replies, positive replies, bounces, unsubscribes, with totals and rates for the window.

Authorization

BearerAuth
AuthorizationBearer <token>

Your API key from app.argorant.com/profile, sent as Authorization: Bearer <key>.

In: header

Path Parameters

campaign_id*string

Campaign id.

Query Parameters

days?integer

Window in days (max 365).

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/campaigns/7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c/analytics?days=30"
JSON
{  "campaign_id": "7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c",  "days": 30,  "totals": {    "sent": 1188,    "replies": 41,    "positive": 9,    "bounces": 3,    "unsubscribes": 1,    "reply_rate": 3.45,    "bounce_rate": 0.25  },  "series": [    {      "day": "2026-09-17",      "sent": 120,      "replies": 4,      "positive": 1,      "bounces": 0,      "unsubscribes": 0    },    {      "day": "2026-09-18",      "sent": 118,      "replies": 6,      "positive": 2,      "bounces": 1,      "unsubscribes": 0    }  ]}