GET
/
campaigns
/
{id}
/
stats
curl --request GET \
  --url https://api.kakiyo.com/v1/campaigns/{id}/stats \
  --header 'Authorization: Bearer <token>'
{
  "id": "campaign_12345abcde",
  "name": "Q2 Sales Outreach",
  "status": "active",
  "stats": {
    "prospects": 150,
    "prospectsAnswers": 42,
    "messages": 320,
    "qualified": 18,
    "closed": 5,
    "conversionRate": "12.00%",
    "responseRate": "28.00%"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the campaign

Response

200
application/json

Campaign statistics

The response is of type object.