fetch_person
Retrieve LinkedIn profile data, including basic info, experience, education, skills, languages, posts, comments, and reactions. Customize data retrieval by enabling specific parameters only when needed 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 |
---|---|---|---|
commentRetrievalConfig | No | Optional. Configuration for retrieving comments. Available only if retrieveComments is true. | |
personUrl | Yes | The LinkedIn profile URL of the person to fetch (e.g., 'https://www.linkedin.com/in/john-doe') | |
postsRetrievalConfig | No | Optional. Configuration for retrieving posts. Available only if retrievePosts is true. | |
reactionRetrievalConfig | No | Optional. Configuration for retrieving reactions. Available only if retrieveReactions is true. | |
retrieveComments | No | Optional. Whether to retrieve the person's comments information. Default is false. | |
retrieveEducation | No | Optional. Whether to retrieve the person's education information. Default is false. | |
retrieveExperience | No | Optional. Whether to retrieve the person's experience 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. | |
retrieveReactions | No | Optional. Whether to retrieve the person's reactions information. Default is false. | |
retrieveSkills | No | Optional. Whether to retrieve the person's skills information. Default is false. |