LinkedIn All-in-One Scraper ✅ No cookies avatar

LinkedIn All-in-One Scraper ✅ No cookies

Pricing

from $1.00 / 1,000 results

Go to Apify Store
LinkedIn All-in-One Scraper ✅ No cookies

LinkedIn All-in-One Scraper ✅ No cookies

Search LinkedIn posts by keywords, scrape profile posts, company posts, and get post details — all in one actor. Powered by real-time data, no cookies required.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

ScrapeForge

ScrapeForge

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

3

Monthly active users

2 hours ago

Last modified

Share

LinkedIn All-in-One Scraper

Search LinkedIn posts by keyword, scrape profile posts, company posts, or fetch individual post details — all in a single actor.

Features

  • Post Search — Search any LinkedIn post by keywords, with filters by company, author, date range, and content type
  • Profile Posts — Extract all posts from one or more LinkedIn profiles
  • Company Posts — Extract all posts from one or more LinkedIn company pages
  • Post Detail — Get full details for specific posts by URL
  • No cookies or LinkedIn account required
  • Real-time data
  • Automatic pagination

Input

FieldTypeDescription
modestringpost-search, profile-posts, company-posts, or post-detail
searchstringKeywords (post-search only)
profileUrlsarrayLinkedIn profile URLs
companyUrlsarrayLinkedIn company page URLs
postUrlsarrayLinkedIn post URLs (post-detail only)
postedLimitstringFilter by recency: 24h, week, month (post-search only)
sortBystringrelevance or date (post-search only)
contentTypestringvideos, images, documents, etc. (post-search only)
maxPostsintegerMax posts to extract (0 = unlimited, default: 100)

Output

Each item in the dataset contains:

{
"id": "urn:li:activity:1234567890",
"url": "https://www.linkedin.com/posts/...",
"content": "Post text content...",
"postedAt": "2024-01-15",
"postedTimestamp": 1705276800,
"author": {
"id": "...",
"name": "John Doe",
"url": "https://www.linkedin.com/in/johndoe/",
"avatar": "https://..."
},
"engagement": {
"likes": 142,
"comments": 23,
"shares": 8,
"reactions": 156
},
"media": {
"images": ["https://..."],
"video": null
},
"article": {
"title": "Article title",
"description": "...",
"url": "https://..."
},
"isRepost": false,
"repostedBy": null,
"source": "post-search"
}

Example Inputs

Search posts by keyword

{
"mode": "post-search",
"search": "artificial intelligence startup",
"postedLimit": "week",
"sortBy": "date",
"maxPosts": 50
}

Get posts from a company

{
"mode": "company-posts",
"companyUrls": ["https://www.linkedin.com/company/openai/"],
"maxPosts": 100
}

Get posts from a profile

{
"mode": "profile-posts",
"profileUrls": ["https://www.linkedin.com/in/satyanadella/"],
"maxPosts": 50
}

Get post details

{
"mode": "post-detail",
"postUrls": [
"https://www.linkedin.com/posts/username_activity-1234567890-abcd"
]
}