logo
LeadsGet lead detail
Leads

Get lead detail

Returns the full lead record including all standard fields, custom fields, and enrichment data.

curl -X GET "https://api.sendkit.ai/v1/leads/example_string" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "_id": "665d4e5f6a7b8c9d0e1f2a3b",
    "email": "john@acme.com",
    "firstName": "John",
    "lastName": "Doe",
    "fullName": "John Doe",
    "companyName": "Acme Corp",
    "companyDomain": "acme.com",
    "jobTitle": "VP of Sales",
    "department": "Sales",
    "phoneNumber": "+1-555-123-4567",
    "linkedinUrl": "https://linkedin.com/in/johndoe",
    "twitterUrl": null,
    "city": "San Francisco",
    "state": "CA",
    "country": "US",
    "timezone": "America/Los_Angeles",
    "tags": [
      "vip",
      "enterprise"
    ],
    "notes": "Met at SaaStr conference",
    "emailVerified": true,
    "emailVerificationResult": "valid",
    "customFields": {
      "industry": "SaaS",
      "revenue": "$10M"
    },
    "importSource": "csv",
    "importedAt": "2025-06-10T10:30:00.000Z",
    "userId": "664f0a1b2c3d4e5f6a7b8c9d",
    "workspaceId": "664f0a1b2c3d4e5f6a7b8c9e",
    "createdAt": "2025-06-10T10:30:00.000Z",
    "updatedAt": "2025-06-15T14:00:00.000Z"
  }
}
GET
/v1/leads/{id}
GET
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_...)
Bearer Token
Bearer Tokenstring
Required

API key as Bearer token

API key as Bearer token
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_...)

header
Authorizationstring
Required

Bearer token. API key as Bearer token

Path Parameters

idstring
Required

Resource ID

Responses

successboolean
dataobject