fetch_person
Retrieve a LinkedIn user's basic profile information and optionally their experience, education, skills, posts, comments, reactions, and more.
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.
Linked API actions are queued into a cloud-browser workflow and may take several minutes. The server returns immediately after starting the workflow with {status: 'pending'|'running', pendingReason, workflowId, operationName, message}. To retrieve the final result, call get_workflow_result with the returned workflowId and operationName ā it will long-poll until completion or the request budget elapses, then return either the final result or another in-progress snapshot. Do not retry the original tool while a workflow is still running; that creates duplicate queued work.
A pending workflow carries pendingReason: 'queued' means it is waiting its turn behind other work on the same account and will start within minutes. 'outsideWorkingHours' means the account has configured working hours and the workflow is parked until they reopen ā possibly the next working day. In that case get_workflow_result returns immediately instead of polling, message states when the window opens, and you should report that to the user rather than looping.
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') | |
| retrievePosts | No | Optional. Whether to retrieve the person's posts information. Default is false. | |
| retrieveSkills | No | Optional. Whether to retrieve the person's skills information. Default is false. | |
| 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. | |
| retrieveLanguages | No | Optional. Whether to retrieve the person's languages information. Default is false. | |
| retrieveReactions | No | Optional. Whether to retrieve the person's reactions information. Default is false. | |
| retrieveExperience | No | Optional. Whether to retrieve the person's experience 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. |