Skip to main content
GET
/
v1
/
campaigns
/
{id}
/
chunk-leads
Get campaign leads
curl --request GET \
  --url https://api4.kinbox.com.br/v1/campaigns/{id}/chunk-leads \
  --header 'Authorization: Bearer <token>'
[
  {
    "number": "5585984134352",
    "placeholders": [
      "Lucas"
    ],
    "sentAt": "2026-03-03T14:32:41.016Z",
    "status": "sent"
  },
  {
    "number": "558597281857",
    "placeholders": [
      "Pedro"
    ],
    "sentAt": "2026-03-03T14:32:41.016Z",
    "status": "read"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json
Example:
[
{
"number": "5585984134352",
"placeholders": ["Lucas"],
"sentAt": "2026-03-03T14:32:41.016Z",
"status": "sent"
},
{
"number": "558597281857",
"placeholders": ["Pedro"],
"sentAt": "2026-03-03T14:32:41.016Z",
"status": "read"
}
]