Enrich Profile
curl --request POST \
--url https://api.example.com/v1/tools/enrich/profile \
--header 'Content-Type: application/json' \
--data '
{
"linkedin_url": "<string>",
"email": "<string>",
"name": "<string>",
"company_domain": "<string>"
}
'import requests
url = "https://api.example.com/v1/tools/enrich/profile"
payload = {
"linkedin_url": "<string>",
"email": "<string>",
"name": "<string>",
"company_domain": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
linkedin_url: '<string>',
email: '<string>',
name: '<string>',
company_domain: '<string>'
})
};
fetch('https://api.example.com/v1/tools/enrich/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/tools/enrich/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'linkedin_url' => '<string>',
'email' => '<string>',
'name' => '<string>',
'company_domain' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/tools/enrich/profile"
payload := strings.NewReader("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/tools/enrich/profile")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/tools/enrich/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyEnrichment
Enrich Profile
Enrich a person profile from LinkedIn URL, email, or name
POST
/
v1
/
tools
/
enrich
/
profile
Enrich Profile
curl --request POST \
--url https://api.example.com/v1/tools/enrich/profile \
--header 'Content-Type: application/json' \
--data '
{
"linkedin_url": "<string>",
"email": "<string>",
"name": "<string>",
"company_domain": "<string>"
}
'import requests
url = "https://api.example.com/v1/tools/enrich/profile"
payload = {
"linkedin_url": "<string>",
"email": "<string>",
"name": "<string>",
"company_domain": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
linkedin_url: '<string>',
email: '<string>',
name: '<string>',
company_domain: '<string>'
})
};
fetch('https://api.example.com/v1/tools/enrich/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/tools/enrich/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'linkedin_url' => '<string>',
'email' => '<string>',
'name' => '<string>',
'company_domain' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/tools/enrich/profile"
payload := strings.NewReader("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/tools/enrich/profile")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/tools/enrich/profile")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"company_domain\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyOverview
Enrich a person’s profile with detailed information including job title, company, social profiles, and more. Supports lookup by LinkedIn URL, email address, or name + company.Request Body
At least one identifier is required:string
LinkedIn profile URL (e.g., “linkedin.com/in/satyanadella”)
string
Email address to look up
string
Full name (works best with company_domain)
string
Company domain to help disambiguate (e.g., “microsoft.com”)
Response (202 - Processing)
{
"request_id": "req_abc123",
"status": "processing",
"tool": "enrich_profile",
"message": "Profile enrichment job queued successfully"
}
Job Result
{
"status": "completed",
"result": {
"profile": {
"full_name": "Satya Nadella",
"first_name": "Satya",
"last_name": "Nadella",
"title": "Chairman and CEO",
"company": "Microsoft",
"company_domain": "microsoft.com",
"linkedin_url": "linkedin.com/in/satyanadella",
"location": "Bellevue, Washington",
"email": "[email protected]",
"phone": "+14255551234",
"summary": "Chairman and CEO of Microsoft...",
"skills": ["Leadership", "Cloud Computing", "AI"],
"experience": [
{
"company": { "name": "Microsoft" },
"title": { "name": "Chairman and CEO" },
"start_date": "2014-02",
"is_primary": true
}
],
"education": [
{
"school": { "name": "University of Wisconsin-Milwaukee" },
"degrees": ["Master of Science"],
"majors": ["Computer Science"]
}
]
}
}
}
SDK Usage
// By LinkedIn URL
const profile = await agent.enrichProfile({
linkedin_url: 'linkedin.com/in/satyanadella'
});
// By email
const profile = await agent.enrichProfile({
email: '[email protected]'
});
// By name + company
const profile = await agent.enrichProfile({
name: 'Satya Nadella',
company_domain: 'microsoft.com'
});
console.log(`${profile.profile.full_name}`);
console.log(`${profile.profile.title} at ${profile.profile.company}`);
Data Fields
| Field | Description |
|---|---|
full_name | Full name |
first_name | First name |
last_name | Last name |
title | Current job title |
company | Current company name |
company_domain | Company website domain |
linkedin_url | LinkedIn profile URL |
location | Location (city, state) |
email | Email address |
phone | Phone number |
summary | Bio / summary |
skills | Array of skills |
experience | Work history |
education | Education history |
⌘I