Company

company fetch

Fetch a LinkedIn company profile with optional employees, decision makers, and posts.

bash
linkedin company fetch <url> [flags]
ArgRequiredDescription
urlyesLinkedIn company URL
FlagTypeDescription
--employeesbooleanInclude employee data
--dmsbooleanInclude decision makers
--postsbooleanInclude company posts
--employees-limitintegerMax employees to retrieve
--employees-first-namestringFilter employees by first name
--employees-last-namestringFilter employees by last name
--employees-positionstringFilter employees by position
--employees-locationsstringFilter employees by locations, comma-separated
--employees-industriesstringFilter employees by industries, comma-separated
--employees-schoolsstringFilter employees by schools, comma-separated
--dms-limitintegerMax decision makers to retrieve
--posts-limitintegerMax posts to retrieve
--posts-sincestringPosts since ISO timestamp
bash
# Basic company info
linkedin company fetch https://www.linkedin.com/company/flutterwtf

# Company with employees and decision makers
linkedin company fetch https://www.linkedin.com/company/flutterwtf --employees --dms --json

# Filter employees by position and location
linkedin company fetch https://www.linkedin.com/company/flutterwtf \
  --employees --employees-position "Engineer" --employees-locations "United States"

# Company posts from last month
linkedin company fetch https://www.linkedin.com/company/flutterwtf \
  --posts --posts-since 2024-12-01T00:00:00Z --json

Search for companies on LinkedIn with filters.

bash
linkedin company search [flags]
FlagTypeDescription
--termstringSearch keyword or phrase
--limitintegerMax results to return
--sizesstringCompany sizes, comma-separated (1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+)
--locationsstringComma-separated locations
--industriesstringComma-separated industries
bash
linkedin company search --term "fintech" --sizes "11-50,51-200" --json
linkedin company search --industries "Software Development" --locations "Berlin" --json