LinkedIn Import
Accelerate prospecting and research with a high-throughput LinkedIn importer for profiles and companies.
Submit a LinkedIn or Sales Navigator source and we securely fetch items as if the authenticated user was browsing—reliably and at scale.
Sources: LinkedIn search URLs (People/Companies), Sales Navigator search URLs, Sales Navigator list URLs
Inputs: Source URL and the user's LinkedIn session cookie (used only to fetch data on their behalf)
Flow: Asynchronous job with a returned job_id; we handle throttling and retries; you retrieve the final dataset when it's ready
Delivery: Clean, normalized JSON stored and exposed via a shareable public URL
Use cases: Lead sourcing, account research, CRM enrichment, analytics pipelines
Designed for scale, accuracy, and operational resilience.
Submit a linkedin import job. Returns a job ID for tracking the process.
Payload to submit a new linkedin import job.
The search / list url from linkedin / salesnavigator
https://www.linkedin.com/search/results/people/?keywords=victor%20goubet&origin=SWITCH_SEARCH_VERTICAL&sid=123
The cookie to use for the linkedin import job.
AQEDAS3uuAQCn_xMAAABmBPknL8AAAGZlmf-J04AVVG5_Yr676RYMtS1N3fh1Wlw-UtN-jam9Ajmzl6zY-bA8_ZDmgQWEgzr28udgdiYpUPoV-lbzFPesoeMzL1BdGH0NeII56i_cdTN9PAthBzcGtni
User agent string.
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Example: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Language string, format like 'v=2&lang=en-us'.
v=2&lang=en-us
The type of object to import.
profile
Possible values: Job submitted
Invalid url format or missing required fields
Authentication failed - invalid or missing OAuth 2.0 token
Internal server error
Service unavailable
POST /v1/linkedin-import HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 449
{
"url": "https://www.linkedin.com/search/results/people/?keywords=victor%20goubet&origin=SWITCH_SEARCH_VERTICAL&sid=123",
"cookie": "AQEDAS3uuAQCn_xMAAABmBPknL8AAAGZlmf-J04AVVG5_Yr676RYMtS1N3fh1Wlw-UtN-jam9Ajmzl6zY-bA8_ZDmgQWEgzr28udgdiYpUPoV-lbzFPesoeMzL1BdGH0NeII56i_cdTN9PAthBzcGtni",
"user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"lang": "v=2&lang=en-us",
"object_type": "profile"
}
{
"job_id": "21014abc65004d2781d2e0ef4c9fbb46",
"message": "Job submitted",
"status": "SUCCESS",
"status_code": 202
}
Retrieve the result and status of a previously submitted linkedin import job.
The unique identifier of the linkedin import job
{"summary":"Sample job ID","value":"21014abc65004d2781d2e0ef4c9fbb46"}
Job succeeded.
Job is still running.
Input validation failed.
Authentication failed - invalid or missing OAuth 2.0 token
Failed to retrieve job.
Job timed out.
GET /v1/linkedin-import/{job_id} HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"message": "Job succeeded.",
"status": "SUCCESS",
"status_code": 200,
"result": {
"result_url": "https://delphadev-static-ressources.s3.amazonaws.com/linkedin_results/delpha/123.json"
},
"process_time": 0.123
}
Was this helpful?