API Reference
Enrich with LinkedIn profile data
Retrieves detailed profile information for a specific LinkedIn URL. Each successful lookup costs 1 credit.
GET
https://search.linkd.inc
/
api
/
enrich
/
linkedin
curl --request GET \
--url https://search.linkd.inc/api/enrich/linkedin \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"profile": {
"id": "example_user_id",
"name": "John Doe",
"location": "San Francisco, CA",
"headline": "Software Engineer at Tech Company",
"description": "Experienced software engineer with a focus on AI and machine learning...",
"title": "Software Engineer",
"profile_picture_url": "https://example.com/pic.jpg",
"linkedin_url": "https://linkedin.com/in/johndoe"
},
"experience": [
{
"title": "Software Engineer",
"company_name": "Tech Company",
"start_date": "2021-01",
"end_date": null,
"description": "Working on AI-powered features...",
"location": "San Francisco, CA",
"company_logo": "https://example.com/company-logo.jpg"
}
],
"education": [
{
"degree": "Bachelor of Science",
"field_of_study": "Computer Science",
"school_name": "Example University",
"school_logo": "https://example.com/school-logo.jpg",
"start_date": "2017-09",
"end_date": "2021-05",
"description": "Member of CS club, AI research assistant..."
}
]
}
]
}
Authorizations
API key must be provided as a Bearer token in the Authorization header
Query Parameters
The LinkedIn profile URL to look up.
Response
200
application/json
Successful enrichment operation
The response is of type object
.
curl --request GET \
--url https://search.linkd.inc/api/enrich/linkedin \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"profile": {
"id": "example_user_id",
"name": "John Doe",
"location": "San Francisco, CA",
"headline": "Software Engineer at Tech Company",
"description": "Experienced software engineer with a focus on AI and machine learning...",
"title": "Software Engineer",
"profile_picture_url": "https://example.com/pic.jpg",
"linkedin_url": "https://linkedin.com/in/johndoe"
},
"experience": [
{
"title": "Software Engineer",
"company_name": "Tech Company",
"start_date": "2021-01",
"end_date": null,
"description": "Working on AI-powered features...",
"location": "San Francisco, CA",
"company_logo": "https://example.com/company-logo.jpg"
}
],
"education": [
{
"degree": "Bachelor of Science",
"field_of_study": "Computer Science",
"school_name": "Example University",
"school_logo": "https://example.com/school-logo.jpg",
"start_date": "2017-09",
"end_date": "2021-05",
"description": "Member of CS club, AI research assistant..."
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.