API Reference
Research Profile
Combines profile enrichment with company data lookup in a single request. Takes an email or phone number as input and returns both the person’s profile data and their current employer’s company information.
GET
https://search.linkd.inc
/
api
/
enrich
/
research
curl --request GET \
--url https://search.linkd.inc/api/enrich/research \
--header 'Authorization: Bearer <token>'
{
"profile_data": {
"id": "string",
"name": "string",
"location": "string",
"headline": "string",
"description": "string",
"title": "string",
"profile_picture_url": "string",
"linkedin_url": "string",
"twitter_handle": "string",
"websites": [
{
"url": "string"
}
],
"experience": [
{
"title": "string",
"company_name": "string",
"start_date": "string",
"end_date": "string",
"description": "string",
"location": "string"
}
],
"education": [
{
"degree": "string",
"field_of_study": "string",
"school_name": "string",
"start_date": "string",
"end_date": "string",
"description": "string"
}
]
},
"company_data": {
"company_id": 123,
"company_name": "Example Company",
"company_type": "Public Company",
"company_website": "https://example.com",
"headquarters": "San Francisco, CA",
"employee_count_range": "1001-5000",
"linkedin_company_description": "A leading tech company...",
"linkedin_profile_url": "https://linkedin.com/company/example",
"year_founded": "2010",
"crunchbase_category": "Software",
"linkedin_industry": "Information Technology",
"linkedin_speciality": "Cloud Computing",
"linkedin_headcount": 2000,
"funding_milestones": [
{
"funding_date": "2022-01-01",
"funding_amount": "100M",
"funding_round": "Series C",
"investors": "VC Firm"
}
],
"news_articles": [
{
"article_title": "Company raises $100M",
"article_url": "https://news.com/article",
"article_publish_date": "2022-01-02",
"article_source": "TechCrunch"
}
],
"headcount": {
"total_employees": 2000,
"growth_rate": "10%"
},
"markets": [
"Cloud",
"AI"
]
}
}
Authorizations
API key must be provided as a Bearer token in the Authorization header
Query Parameters
Email address to research. Exactly one of 'email' or 'phone' must be provided.
Phone number to research. Exactly one of 'email' or 'phone' must be provided.
Response
200
application/json
Successful research operation
The response is of type object
.
curl --request GET \
--url https://search.linkd.inc/api/enrich/research \
--header 'Authorization: Bearer <token>'
{
"profile_data": {
"id": "string",
"name": "string",
"location": "string",
"headline": "string",
"description": "string",
"title": "string",
"profile_picture_url": "string",
"linkedin_url": "string",
"twitter_handle": "string",
"websites": [
{
"url": "string"
}
],
"experience": [
{
"title": "string",
"company_name": "string",
"start_date": "string",
"end_date": "string",
"description": "string",
"location": "string"
}
],
"education": [
{
"degree": "string",
"field_of_study": "string",
"school_name": "string",
"start_date": "string",
"end_date": "string",
"description": "string"
}
]
},
"company_data": {
"company_id": 123,
"company_name": "Example Company",
"company_type": "Public Company",
"company_website": "https://example.com",
"headquarters": "San Francisco, CA",
"employee_count_range": "1001-5000",
"linkedin_company_description": "A leading tech company...",
"linkedin_profile_url": "https://linkedin.com/company/example",
"year_founded": "2010",
"crunchbase_category": "Software",
"linkedin_industry": "Information Technology",
"linkedin_speciality": "Cloud Computing",
"linkedin_headcount": 2000,
"funding_milestones": [
{
"funding_date": "2022-01-01",
"funding_amount": "100M",
"funding_round": "Series C",
"investors": "VC Firm"
}
],
"news_articles": [
{
"article_title": "Company raises $100M",
"article_url": "https://news.com/article",
"article_publish_date": "2022-01-02",
"article_source": "TechCrunch"
}
],
"headcount": {
"total_employees": 2000,
"growth_rate": "10%"
},
"markets": [
"Cloud",
"AI"
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.