logo
LeadsList leads

List leads

Returns a paginated list of leads in the workspace. Supports filtering by search text, tags, and email verification status.

curl -X GET "https://api.sendkit.ai/v1/leads?search=example_string&tags=example_string&emailVerified=true&emailStatus=valid,risky&emailType=all&hasCompany=true&hasPhone=true&segProtected=true&cursor=665d4e5f6a7b8c9d0e1f2a3b&limit=42" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "data": [
    {
      "_id": "665d4e5f6a7b8c9d0e1f2a3b",
      "email": "john@acme.com",
      "firstName": "John",
      "lastName": "Doe",
      "companyName": "Acme Corp",
      "jobTitle": "VP of Sales",
      "tags": [
        "vip",
        "enterprise"
      ],
      "emailVerified": true,
      "emailVerificationResult": "deliverable",
      "segProtected": true,
      "segProvider": "proofpoint",
      "segProviderName": "Proofpoint",
      "city": "San Francisco",
      "state": "CA",
      "country": "US",
      "createdAt": "2025-06-10T10:30:00.000Z"
    },
    {
      "_id": "665d4e5f6a7b8c9d0e1f2a3c",
      "email": "jane@example.com",
      "firstName": "Jane",
      "lastName": "Smith",
      "companyName": "Example Inc",
      "jobTitle": "Marketing Director",
      "tags": [],
      "emailVerified": false,
      "emailVerificationResult": null,
      "segProtected": false,
      "segProvider": "microsoft_atp",
      "segProviderName": "Microsoft",
      "city": null,
      "state": null,
      "country": "US",
      "createdAt": "2025-06-12T14:00:00.000Z"
    }
  ],
  "pagination": {
    "limit": 25,
    "total": 2,
    "hasMore": false,
    "nextCursor": "665d4e5f6a7b8c9d0e1f2a3c"
  }
}
GET
/v1/leads
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_...)
query
tagsstring

Comma-separated tag names - returns leads matching any of the tags

query
emailVerifiedstring

Filter by email verification status

Options: true, false
query
emailStatusstring

Comma-separated email verification statuses. Filters leads by their email quality. - valid: Verified deliverable emails, safe to send to - invalid: Incorrect or non-existent email addresses - risky: May exist but could bounce or have low reliability - catchAll: Domain accepts all emails, but delivery is uncertain - unknown: Could not be fully verified

query
emailTypestring

Filter by email type. - all: Includes every email regardless of category (default) - personal: Emails from personal providers (e.g., Gmail, Yahoo, Outlook) - business: Emails associated with company domains (e.g., name@company.com)

Options: all, personal, business
query
hasCompanystring

When "true", returns only leads that have a company name

Options: true
query
hasPhonestring

When "true", returns only leads that have a phone number

Options: true
query
segProtectedstring

Filter by Secure Email Gateway (SEG) protection status. - true: Protected by SEG (strong spam/security filters) - false: No advanced email security detected

Options: true, false
query
cursorstring

Cursor for pagination - use the nextCursor value from the previous response to fetch the next page

query
limitinteger

Items per page (default 25, max 100)

Min: 1 • Max: 100
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_...)

Query Parameters

tagsstring

Comma-separated tag names - returns leads matching any of the tags

emailVerifiedstring

Filter by email verification status

Allowed values:truefalse
emailStatusstring

Comma-separated email verification statuses. Filters leads by their email quality.

  • valid: Verified deliverable emails, safe to send to
  • invalid: Incorrect or non-existent email addresses
  • risky: May exist but could bounce or have low reliability
  • catchAll: Domain accepts all emails, but delivery is uncertain
  • unknown: Could not be fully verified
emailTypestring

Filter by email type.

  • all: Includes every email regardless of category (default)
  • personal: Emails from personal providers (e.g., Gmail, Yahoo, Outlook)
  • business: Emails associated with company domains (e.g., name@company.com)
Allowed values:allpersonalbusiness
hasCompanystring

When "true", returns only leads that have a company name

Allowed values:true
hasPhonestring

When "true", returns only leads that have a phone number

Allowed values:true
segProtectedstring

Filter by Secure Email Gateway (SEG) protection status.

  • true: Protected by SEG (strong spam/security filters)
  • false: No advanced email security detected
Allowed values:truefalse
cursorstring

Cursor for pagination - use the nextCursor value from the previous response to fetch the next page

limitinteger

Items per page (default 25, max 100)

Responses

successboolean
dataarray
paginationobject