Person API

Retrieve comprehensive personal profiles by LinkedIn ID. Returns name, job title, company, location, email, interests, skills, and employment history in structured JSON.

Endpoint: https://api.enrichmentapi.io/person

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🔍

Query Parameters

  • linkedin_id Required
    The LinkedIn username of the person (e.g. "satyanadella").

API Examples

Code to Integrate
import requests

api_key = "YOUR_API_KEY"
url = "https://api.enrichmentapi.io/person"

params = {
    "api_key": api_key,
    "email": "[email protected]"
}

response = requests.get(url, params=params)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print(f"Request failed: {response.status_code}")