LinkedIn is where B2B identities live—make sure the URLs you store truly point to the right people and companies. Delpha’s LinkedIn Finder and LinkedIn Validator keep your CRM aligned with canonical LinkedIn profiles by normalizing URLs, checking format quality, and surfacing the most relevant matches.
What we assess:
Completeness: Is a LinkedIn URL provided?
Validity: Does the URL follow LinkedIn’s accepted format (no existence check)?
Consistency: Does the input equal the normalized canonical form (e.g., people →
.../in/
, companies →.../company/
)?Accuracy: Does the URL appear to match the provided context (person: first & last name, optional company; company: company name, optional website)?
What you get back:
A normalized LinkedIn URL and quality scores for the checks above.
When context suggests a mismatch or uncertainty, AI-powered recommendations: candidate profiles/pages with confidence scores, rank, and helpful details (name, title, location, description). If a company website is provided, we can use it to help identify the official LinkedIn page.
With LinkedIn Finder and LinkedIn Validator, your records stay clean, standardized, and tied to the right LinkedIn identities—boosting routing accuracy and downstream engagement.
Submit an linkedin for finding and validation. Returns a job ID for tracking the process.
Payload to submit a new LinkedIn quality job.
The LinkedIn URL to assess.
https://www.linkedin.com/in/victorgoubet/
The website URL associated with the LinkedIn entity.
https://delpha.io/
The name of the company.
Delpha
The first name of the entity if it's a profile.
Victor
The last name of the entity if it's a profile.
Goubet
Job submitted to assess_social_network_v16
Invalid linkedin format or missing required fields
Authentication failed - invalid or missing OAuth 2.0 token
Internal server error
Service unavailable
POST /v1/linkedin HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 149
{
"url": "https://www.linkedin.com/in/victorgoubet/",
"website": "https://delpha.io/",
"company_name": "Delpha",
"first_name": "Victor",
"last_name": "Goubet"
}
{
"job_id": "21014abc65004d2781d2e0ef4c9fbb46",
"message": "Job submitted to assess_social_network_v16",
"status": "SUCCESS",
"status_code": 202
}
Retrieve the result and status of a previously submitted linkedin finder and validator job.
The unique identifier of the linkedin 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/{job_id} HTTP/1.1
Host: api.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"message": "Job succeeded.",
"status": "SUCCESS",
"status_code": 200,
"result": {
"data_type": "social_network",
"normalized_value": "https://www.linkedin.com/in/victorgoubet/",
"label": "Ok",
"scores": {
"accuracy": 0.8711710601954503,
"completeness": 1,
"consistency": 1,
"validity": 1
},
"recommendations": [
{
"url": "https://www.linkedin.com/in/victorgoubet/",
"score": 0.8711710601954503,
"title": "Victor Goubet - Delpha",
"rank": 1,
"desc": "Data Engineer & Cloud specialist - AWS · Experience: Delpha · Education: ESILV - Ecole Supérieure d'Ingénieurs Léonard de Vinci · Location: Paris · 500+ ...",
"company_name": "Delpha",
"location": "Paris",
"profile_name": "Victor Goubet"
}
]
},
"process_time": 0.123
}
Was this helpful?