Skip to main content
GET
/
api
/
v1
/
enrich
/
leads
/
bulk
/
{job_id}
/
Get bulk lead enrich job
curl --request GET \
  --url https://api.generect.com/api/v1/enrich/leads/bulk/{job_id}/ \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "input": {
        "linkedin_url": "https://www.linkedin.com/in/jordan-ellis"
      },
      "lead": {
        "id": "ACwAAAE9bk0BxY7Qf2mN4pR8sT1vW3zA5cE6gH9",
        "linkedin_id": "78461298",
        "first_name": "Jordan",
        "last_name": "Ellis",
        "full_name": "Jordan Ellis",
        "headline": "CEO at Microsoft",
        "job_title": "Chief Executive Officer",
        "company_name": "Microsoft",
        "company_industry": "Software Development",
        "linkedin_company_id": "1035",
        "linkedin_url": "https://www.linkedin.com/in/jordan-ellis",
        "location": "San Francisco, California, United States",
        "location_country": "United States",
        "gender": "male",
        "is_premium": true,
        "jobs": [
          {
            "company_name": "Microsoft",
            "job_title": "Chief Executive Officer",
            "job_started_on": "2014-02-01",
            "job_still_working": true
          }
        ],
        "educations": [],
        "languages": [],
        "source": "lead_by_link"
      }
    },
    {
      "input": {
        "id": "ACwAAAFp2r4Bd1eF3gH5iJ7kL9mN0pQ2rS4tU6v"
      },
      "lead": null
    }
  ],
  "meta": {
    "job_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "status": "completed",
    "total": 2,
    "processed": 2,
    "found": 1,
    "not_found": 1,
    "amount_charged": 0.04,
    "error": null
  }
}

Use Case:

Check the status and retrieve results for a bulk lead enrich job.

Pricing

This endpoint is free — it does not incur any charges.

Authorizations

Authorization
string
header
required

Use the required Token prefix. Example: Authorization: Token xxxxxxxxx

Path Parameters

job_id
string
required

Response

Bulk job status and results

data
object[] | null

Result items once status is completed; null until then.

meta
object

Bulk job state. Poll the bulk status endpoint with job_id or subscribe to the completion webhook.