Get bulk job status

GET
/v1/bulk/{id}

Authorization

AuthorizationRequiredBearer <token>

API key. Obtain from POST /v1/account/api-keys.

In: header

Path Parameters

idRequiredstring
Pattern: "^bulk_"
curl -X GET "https://api.bytekit.com/v1/bulk/string" \
  -H "Authorization: Bearer <token>"

Successful response.

{
  "id": "bulk_01j9abc123",
  "status": "pending",
  "total": 0,
  "completed": 0,
  "failed": 0,
  "created_at": "2019-08-24T14:15:22Z",
  "completed_at": "2019-08-24T14:15:22Z",
  "total_credits_charged": 0,
  "estimated_credits": 0,
  "webhook_url": "string"
}