GET
https://search.linkd.inc
/
api
/
enrich
/
contacts
curl --request GET \
  --url https://search.linkd.inc/api/enrich/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "contacts": [
        {
          "type": "email",
          "value": "john.doe@company.com",
          "subType": "work"
        },
        {
          "type": "email",
          "value": "john.personal@gmail.com",
          "subType": "personal"
        },
        {
          "type": "phone",
          "value": "+1 555-123-4567",
          "subType": "mobile"
        }
      ],
      "social": [
        {
          "type": "li",
          "link": "https://www.linkedin.com/in/john-doe-12345678",
          "rating": "100"
        },
        {
          "type": "fb",
          "link": "https://www.facebook.com/johndoe",
          "rating": "100"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key must be provided as a Bearer token in the Authorization header

Query Parameters

linkedin_url
string
required

The LinkedIn profile URL to look up.

Response

200
application/json

Successful contact information retrieval

The response is of type object.