GET
/
campaigns
curl --request GET \
  --url https://api.kakiyo.com/v1/campaigns \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "campaign_12345abcde",
    "name": "Q2 Sales Outreach",
    "status": "active",
    "agent": "agent_abcdef123456",
    "product": "prod_123456789",
    "createdAt": "2023-06-15T10:30:00Z",
    "stats": {
      "prospects": 150,
      "prospectsAnswers": 42,
      "messages": 320,
      "qualified": 18,
      "closed": 5
    }
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:20

Maximum number of campaigns to return

Required range: x <= 100
after
string

Cursor for pagination

Response

200
application/json

List of campaigns

The response is of type object[].