fetch_person
Retrieve a LinkedIn person's basic profile information. Optionally fetch experience, education, skills, languages, posts, comments, or reactions. Request only essential data to optimize performance.
Instructions
Allows you to open a person page to retrieve their basic information and perform additional person-related actions if needed. (st.openPersonPage action). Allows additional optional retrieval of experience, education, skills, languages, posts, comments and reactions. ⚠️ PERFORMANCE WARNING: Only set additional retrieval flags to true if you specifically need that data. Each additional parameter significantly increases execution time: 💡 Recommendation: Start with basic info only. Only request additional data if the user explicitly asks for it or if it's essential for the current task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| personUrl | Yes | The LinkedIn profile URL of the person to fetch (e.g., 'https://www.linkedin.com/in/john-doe') | |
| retrieveExperience | No | Optional. Whether to retrieve the person's experience information. Default is false. | |
| retrieveEducation | No | Optional. Whether to retrieve the person's education information. Default is false. | |
| retrieveSkills | No | Optional. Whether to retrieve the person's skills information. Default is false. | |
| retrieveLanguages | No | Optional. Whether to retrieve the person's languages information. Default is false. | |
| retrievePosts | No | Optional. Whether to retrieve the person's posts information. Default is false. | |
| retrieveComments | No | Optional. Whether to retrieve the person's comments information. Default is false. | |
| retrieveReactions | No | Optional. Whether to retrieve the person's reactions information. Default is false. | |
| postsRetrievalConfig | No | Optional. Configuration for retrieving posts. Available only if retrievePosts is true. | |
| commentsRetrievalConfig | No | Optional. Configuration for retrieving comments. Available only if retrieveComments is true. | |
| reactionsRetrievalConfig | No | Optional. Configuration for retrieving reactions. Available only if retrieveReactions is true. |