Enrich API

Convert a person’s input into a structured profile from public signals.

How to authenticate

Authorization: Bearer YOUR_API_KEY

Endpoint

POST /v1/enrich

Input

Name & Location

Send a first name, last name and location.

  • first_name

  • last_name

  • location

LinkedIn URL Profile

Send a LinkedIn URL profile

  • linkedin_url

Output field (Best effort)

  • Jobs

  • Interest

  • Companies

  • Evidence_links

  • Relatives (optional)

  • Socials (linkedin, x, instagram)

  • Skills

  • Locations

  • Educations

  • Confidence

  • Age_estimate (optional)

  • Followed_influencers (optional)

Example request

curl -X POST https://api.example.com/v1/enrich \

-H "Authorization: Bearer YOUR_API_KEY" \

-H "Content-Type: application/json" \

-d '{"linkedin_url":"https://www.linkedin.com/in/john-smith-123456789/"}'

curl -X POST https://api.example.com/v1/enrich \

-H "Authorization: Bearer YOUR_API_KEY" \

-H "Content-Type: application/json" \

-d '{"linkedin_url":"https://www.linkedin.com/in/john-

smith-123456789/"}'

curl -X POST https://api.example.com/v1/enrich \

-H "Authorization: Bearer YOUR_API_KEY"\

-H "Content-Type: application/json" \

-d '{"linkedin_url": "https://www.linkedin.com/in/john-smith-123456789/"}'

Example response

{

"name": "John Smith",

"skills": ["Partnerships", "SaaS", "B2B Sales"],

"interests": ["Technology", "Startups"],

"locations": ["San Francisco, California, United States"],

"socials": {

"linkedin": "https://www.linkedin.com/in/john-smith-123456789/",

"X": "@john.smith"

},

"confidence": 0.92

}

{

"name": "John Smith",

"skills": ["Partnerships", "SaaS", "B2B Sales"],

"interests": ["Technology", "Startups"],

"locations": ["San Francisco, California, United States"],

"socials": {

"linkedin": "https://www.linkedin.com/in/john-smith-

123456789/",

"X": "@john.smith"

},

"confidence": 0.92

}

{

"name": "John Smith",

"skills": ["Partnerships", "SaaS",

"B2B Sales"],

"interests": ["Technology", "Startups"],

"locations": ["San Francisco, California, United States"],

"socials": {

"linkedin": "https://www.linkedin.com/in/john-smith-123456789/",

"X": "@john.smith"

},

"confidence": 0.92

}