Person

person fetch

Fetch a LinkedIn person profile with optional additional data sections.

bash
linkedin person fetch <url> [flags]
ArgRequiredDescription
urlyesLinkedIn profile URL
FlagTypeDescription
--experiencebooleanInclude work experience
--educationbooleanInclude education history
--skillsbooleanInclude skills
--languagesbooleanInclude languages
--postsbooleanInclude recent posts
--commentsbooleanInclude recent comments
--reactionsbooleanInclude recent reactions
--posts-limitintegerMax posts to retrieve (requires --posts)
--posts-sincestringPosts since ISO timestamp (requires --posts)
--comments-limitintegerMax comments to retrieve (requires --comments)
--comments-sincestringComments since ISO timestamp (requires --comments)
--reactions-limitintegerMax reactions to retrieve (requires --reactions)
--reactions-sincestringReactions since ISO timestamp (requires --reactions)
bash
# Basic profile info
linkedin person fetch https://www.linkedin.com/in/vprudnikoff

# Full profile with experience and education
linkedin person fetch https://www.linkedin.com/in/vprudnikoff --experience --education --json

# Profile with recent posts (last 5)
linkedin person fetch https://www.linkedin.com/in/vprudnikoff --posts --posts-limit 5

# Everything
linkedin person fetch https://www.linkedin.com/in/vprudnikoff \
  --experience --education --skills --languages \
  --posts --comments --reactions --json

Search for people on LinkedIn with filters.

bash
linkedin person search [flags]
FlagTypeDescription
--termstringSearch keyword or phrase
--limitintegerMax results to return
--first-namestringFilter by first name
--last-namestringFilter by last name
--positionstringFilter by job position
--locationsstringComma-separated locations
--industriesstringComma-separated industries
--current-companiesstringComma-separated current company names
--previous-companiesstringComma-separated previous company names
--schoolsstringComma-separated school names
bash
linkedin person search --term "revops engineer" --locations "San Francisco"
linkedin person search --current-companies "Linked API" --position "Engineer" --json
linkedin person search --schools "MIT" --industries "Software Development" --limit 20 --json