GET /public/v1/bulk/jobs
This endpoint returns a paginated list of all bulk enrichment jobs submitted with your API key. You can use query parameters to paginate through results.
Authorization
Header:X-API-Key: <your_api_key>
API key must be generated from your account at dashboard.powerlead.com.
🔎 Query Parameters
-
skip(integer, optional)
Number of records to skip (for pagination). Minimum: 0 Default: 0 -
limit(integer, optional)
Maximum number of records to return per request. Minimum: 1 Maximum: 100 Default: 10
Success Response
HTTP 200 OKtask_id: Unique job identifier.status: Current job status (queued,processing,completed, orfailed).records: Number of records submitted in the job.created_at: When the job was submitted.completed_at: When the job finished (ornullif not completed).
Error Responses
HTTP 422 Unprocessable Entity – Invalid pagination parameters.Notes
- Use
skipandlimitto paginate through large job histories. - Jobs are listed in reverse chronological order (most recent first).