Skip to Content
Docs are evolving — expect frequent updates.
Research Person

Research Person

Research a person and retrieve detailed professional information including their background, experience, education, and current company details.

Endpoint

POST https://api.kruncher.ai/api/integration/research/person

Request Body

CODE
{
  "fullName": "John Doe",
  "companyName": "Acme Inc",
  "linkedinUrl": "https://linkedin.com/in/johndoe",
  "type": "founder"
}

Fields

FieldTypeRequiredDescription
fullNamestringYesThe full name of the person to research.
companyNamestringYesThe name of their current or associated company.
linkedinUrlstring (URL)NoLinkedIn profile URL for more accurate matching.
typestringNoPerson type classification. Options: founder, investor, employee. Defaults to founder.

Code Examples

JavaScript/TypeScript

CODE
const API_KEY = "YOUR_API_KEY_HERE";
 
const response = await fetch("https://api.kruncher.ai/api/integration/research/person", {
  method: "POST",
  headers: {
    "Authorization": `${API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    fullName: "John Doe",
    companyName: "Acme Inc"
  })
});
 
const result = await response.json();
console.log("Person:", result.data.fullName);
console.log("Role:", result.data.roleInCompany);

Result: Researches a person using name and company. Uses default type founder.

Python

CODE
import requests
 
API_KEY = "YOUR_API_KEY_HERE"
url = "https://api.kruncher.ai/api/integration/research/person"
 
headers = {
    "Authorization": f"{API_KEY}",
    "Content-Type": "application/json"
}
 
data = {
    "fullName": "John Doe",
    "companyName": "Acme Inc"
}
 
response = requests.post(url, headers=headers, json=data)
result = response.json()
 
print(f"Person: {result['data']['fullName']}")
print(f"Role: {result['data']['roleInCompany']}")

Result: Researches a person using name and company.

cURL

CODE
curl -X POST "https://api.kruncher.ai/api/integration/research/person" \
  -H "Authorization: YOUR_API_KEY_HERE" \
  -H "Content-Type: application/json" \
  -d '{
    "fullName": "John Doe",
    "companyName": "Acme Inc"
  }'

Response Structure

Success Response

CODE
{
  "metadata": {
    "code": "1000",
    "title": "Successful"
  },
  "data": {
    "fullName": "John Doe",
    "name": "John",
    "surname": "Doe",
    "type": "founder",
    "profileImage": "https://...",
    "shortBio": "Serial entrepreneur with 15+ years experience...",
    "description": "Detailed professional description...",
    "roleInCompany": "CEO & Co-Founder",
    "linkedinUrl": "https://linkedin.com/in/johndoe",
    "linkedinFollowers": 5000,
    "linkedinConnection": 500,
    "emailAddress": "john@acme.com",
    "city": "San Francisco",
    "country": "United States",
    "countryCode": "US",
    "pastExperience": [
      {
        "role": "CTO",
        "company": "Previous Corp",
        "startDate": "2015-01",
        "endDate": "2020-06"
      }
    ],
    "education": [
      {
        "degree": "MBA",
        "school": "Stanford University",
        "year": "2014"
      }
    ],
    "highlights": ["Forbes 30 Under 30", "Y Combinator Alumni"],
    "tags": ["SaaS", "AI", "Enterprise"],
    "skillSummary": "Product strategy, fundraising, team building...",
    "currentCompany": {
      "role": "CEO",
      "name": "Acme Inc",
      "logo": "https://...",
      "website_url": "https://acme.com",
      "startDate": "2020-07",
      "endDate": null
    }
  }
}

Response Fields

Person Data

FieldTypeDescription
fullNamestringFull name of the person
namestringFirst name
surnamestringLast name
typestringPerson type (founder, investor, employee)
profileImagestringProfile photo URL
shortBiostringBrief biography
descriptionstringDetailed professional description
roleInCompanystringCurrent role/title
linkedinUrlstringLinkedIn profile URL
linkedinFollowersnumberLinkedIn follower count
linkedinConnectionnumberLinkedIn connection count
emailAddressstringContact email
citystringCity of residence
countrystringCountry name
countryCodestringISO country code
pastExperiencearrayPrevious work experience
educationarrayEducational background
highlightsarrayKey achievements
tagsarrayRelevant tags/keywords
skillSummarystringSummary of professional skills
currentCompanyobjectCurrent company details

Current Company Object

FieldTypeDescription
rolestringRole at the company
namestringCompany name
logostringCompany logo URL
website_urlstringCompany website
startDatestringStart date at company
endDatestring | nullEnd date (null if current)

Credits

This endpoint costs 0.2 credits per new person researched. Cached results are returned for free if the person was previously researched.

Last updated on