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/personAPI Parameters
🔑
Authentication
api_keyRequiredYour API key from the dashboard.
🔍
Query Parameters
profile_idRequiredThe LinkedIn username or ID of the person (e.g. "satyanadella").
API Examples
Code to Integrate
curl -G "https://api.enrichmentapi.io/person" \ --data-urlencode "api_key=APIKEY" \ --data-urlencode "profile_id=satyanadella"
import requests params = { 'api_key': 'APIKEY', 'profile_id': 'satyanadella' } response = requests.get('https://api.enrichmentapi.io/person', params=params) print(response.json())
const axios = require('axios'); axios.get('https://api.enrichmentapi.io/person', { params: { api_key: 'APIKEY', profile_id: 'satyanadella' } }) .then(res => console.log(res.data)) .catch(err => console.error(err.message));
<?php $query = http_build_query([ 'api_key' => 'APIKEY', 'profile_id' => 'satyanadella', ]); $response = file_get_contents("https://api.enrichmentapi.io/person?$query"); print_r(json_decode($response, true));
require 'net/http' require 'json' uri = URI('https://api.enrichmentapi.io/person') uri.query = URI.encode_www_form(api_key: 'APIKEY', profile_id: 'satyanadella') response = Net::HTTP.get(uri) puts JSON.parse(response)
import java.net.URI; import java.net.http.HttpClient; import java.net.http.HttpRequest; import java.net.http.HttpResponse; public class Main { public static void main(String[] args) throws Exception { String url = "https://api.enrichmentapi.io/person?api_key=APIKEY&profile_id=satyanadella"; HttpClient client = HttpClient.newHttpClient(); HttpRequest request = HttpRequest.newBuilder().uri(URI.create(url)).GET().build(); HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString()); System.out.println(response.body()); } }