get_linkedin_profile
Retrieve detailed LinkedIn profile data including work experience, education history, and professional skills by providing a user alias, URL, or URN.
Instructions
Get detailed information about a LinkedIn user profile
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user | Yes | User alias, URL, or URN | |
with_education | No | Include education info | |
with_experience | No | Include experience info | |
with_skills | No | Include skills info |
Input Schema (JSON Schema)
{
"properties": {
"user": {
"description": "User alias, URL, or URN",
"type": "string"
},
"with_education": {
"default": true,
"description": "Include education info",
"type": "boolean"
},
"with_experience": {
"default": true,
"description": "Include experience info",
"type": "boolean"
},
"with_skills": {
"default": true,
"description": "Include skills info",
"type": "boolean"
}
},
"required": [
"user"
],
"type": "object"
}