Campaign LeadsGet campaign lead detail

Get campaign lead detail

Returns full campaign lead details including populated lead data (email, name, company, job title) and complete email history.

curl -X GET "https://api.sendkit.ai/v1/campaigns/example_string/leads/example_string" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "data": {
    "_id": "666a1b2c3d4e5f6a7b8c9d01",
    "campaignId": "665a1b2c3d4e5f6a7b8c9d0e",
    "leadId": {
      "_id": "665d4e5f6a7b8c9d0e1f2a3b",
      "email": "john@acme.com",
      "firstName": "John",
      "lastName": "Doe",
      "companyName": "Acme Corp",
      "jobTitle": "VP of Sales"
    },
    "status": "active",
    "currentSequenceStep": 1,
    "emailsSent": [
      {
        "sequenceStep": 0,
        "variant": null,
        "sentAt": "2025-06-16T10:30:00.000Z",
        "opened": true,
        "clicked": false,
        "bounced": false
      }
    ],
    "replied": false,
    "repliedAt": null,
    "aiTag": null,
    "addedAt": "2025-06-15T09:00:00.000Z"
  }
}
GET
/v1/campaigns/{campaignId}/leads/{campaignLeadId}
GET
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
path
campaignLeadIdstring
Required

Campaign lead record ID (the _id from the CampaignLead document, not the Lead ID)

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

Path Parameters

campaignLeadIdstring
Required

Campaign lead record ID (the _id from the CampaignLead document, not the Lead ID)

Responses

successboolean
dataobject