logo
EnrichmentGet job status
Enrichment

Get job status

Returns the current status and progress of an enrichment job. Jobs expire after 7 days.

curl -X GET "https://api.sendkit.ai/v1/enrichment/jobs/example_string" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "id": "bulk_email_verification_1710000000000_abc1234",
    "type": "email_verification",
    "status": "pending",
    "metadata": {
      "totalItems": 100,
      "processedItems": 0,
      "successCount": 0,
      "failedCount": 0,
      "creditsUsed": 100
    },
    "totalLeads": 100,
    "createdAt": "2025-03-19T10:00:00.000Z",
    "updatedAt": "2025-03-19T10:00:00.000Z",
    "startedAt": null,
    "completedAt": null
  }
}
GET
/v1/enrichment/jobs/{jobId}
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
path
jobIdstring
Required

The enrichment job 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_...)

header
Authorizationstring
Required

Bearer token. API key as Bearer token

Path Parameters

jobIdstring
Required

The enrichment job ID

Responses

successboolean
dataobject