logo
EnrichmentList enrichment jobs

List enrichment jobs

Returns a paginated list of enrichment jobs for the workspace, ordered by most recent first.

curl -X GET "https://api.sendkit.ai/v1/enrichment/jobs?page=25&limit=42" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "data": [
    {
      "id": "bulk_email_verification_1710000000000_abc1234",
      "type": "email_verification",
      "status": "completed",
      "metadata": {
        "totalItems": 50,
        "processedItems": 50,
        "successCount": 45,
        "failedCount": 5,
        "creditsUsed": 50
      },
      "totalLeads": 50,
      "resultCount": 50,
      "errorCount": 5,
      "createdAt": "2025-03-19T10:00:00.000Z",
      "updatedAt": "2025-03-19T10:05:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 25,
    "total": 12,
    "totalPages": 1
  }
}
GET
/v1/enrichment/jobs
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
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

limitinteger

Items per page (default 25, max 100)

Responses

successboolean
dataarray
paginationobject