Public API
Retrieve Bulk Enrichment Job Results
GET /public/v1/bulk/result/{job_id}
Use this endpoint to retrieve the final results of a completed bulk enrichment job. The response contains the enriched contact data, including emails and phone numbers (depending on the requested return fields).
Authorization
Header:
X-API-Key: <your_api_key>
API key must be generated from your account at dashboard.powerlead.com.
Path Parameters
job_id
(string) required
The unique identifier of the bulk enrichment job whose results you wish to retrieve.
Success Response
HTTP 200 OK
Field Descriptions:
- Original input fields are echoed back (e.g., name, company, LinkedIn URL).
emails
: Array of enriched email addresses.phones
: Array of enriched phone numbers.
Error Responses
HTTP 422 Unprocessable Entity – Invalid or malformed job_id
.
Notes
- This endpoint returns results only for jobs with a
completed
status. - Use the
GET /public/v1/bulk/status/{job_id}
endpoint to check if the job is finished before requesting results. - Results are available for at least 30 days after completion.