LinkedIn

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 linkedin for finding and validation

post

Submit an linkedin for finding and validation. Returns a job ID for tracking the process.

Authorizations
Body

Payload to submit a new LinkedIn quality job.

urlany ofOptional

The LinkedIn URL to assess.

Example: https://www.linkedin.com/in/victorgoubet/
stringOptional
or
nullOptional
websiteany ofOptional

The website URL associated with the LinkedIn entity.

Example: https://delpha.io/
stringOptional
or
nullOptional
company_nameany ofOptional

The name of the company.

Example: Delpha
stringOptional
or
nullOptional
first_nameany ofOptional

The first name of the entity if it's a profile.

Example: Victor
stringOptional
or
nullOptional
last_nameany ofOptional

The last name of the entity if it's a profile.

Example: Goubet
stringOptional
or
nullOptional
Responses
202

Job submitted to assess_social_network_v16

application/json
post
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
}

Get linkedin finder and validator job status

get

Retrieve the result and status of a previously submitted linkedin finder and validator job.

Authorizations
Path parameters
job_idstringRequired

The unique identifier of the linkedin job

Example: {"summary":"Sample job ID","value":"21014abc65004d2781d2e0ef4c9fbb46"}
Responses
200

Job succeeded.

application/json
get
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?