
Company Activities API
Fetch LinkedIn posts, comments, and reactions from a company’s LinkedIn page.
.png)
.png)

.png)

1{
2 "success": true,
3 "company": {
4 "id": "1035",
5 "name": "Microsoft",
6 "linkedInUrl": "https://www.linkedin.com/company/1035"
7 },
8 "posts": [
9 {
10 "id": "7242064211135107072",
11 "text": "Our latest innovation in AI will transform how businesses operate.",
12 "likesCount": 152,
13 "commentsCount": 25,
14 "sharesCount": 10,
15 "activityDate": "2024-09-18T06:57:38.981Z",
16 "authorName": "Microsoft",
17 "authorId": "1035",
18 "authorUrl": "https://www.linkedin.com/company/1035",
19 "activityUrl": "https://www.linkedin.com/feed/update/urn:li:activity:7242064211135107072"
20 }
21 ],
22 "credits_left": 15000,
23 "rate_limit_left": 9000
24}
Company Activities JSON Structure
Review the data structure for company posts, comments, and engagement metrics.
JavaScript Integration for Company Activities
Integrate company activities with this JavaScript code sample for ScrapIn.
1const axios = require('axios');
2
3const API_KEY = 'YOUR_API_KEY'; // Replace with your API key from the Scrapin dashboard
4const LINKEDIN_TARGET = 'LINKEDIN_URL_OR_PROFILE_ID'; // Replace with the LinkedIn URL or profile ID you want to fecth
5
6const getLinkedInProfile = async () => {
7 const endpoint = `https://api.scrapin.io/enrichment/company/activities?apikey=${API_KEY}&linkedinUrl=${LINKEDIN_TARGET}`;
8
9 try {
10 const response = await axios.get(endpoint);
11 console.log('Data:', response.data);
12 } catch (error) {
13 console.error('Error:', error);
14 }
15};
16
17getLinkedInProfile();
1{
2 "success": true,
3 "credits_left": 90000,
4 "rate_limit_left": 19000,
5 "metadata": {
6 "current_page": 1,
7 "per_page": 100,
8 "total": 500
9 },
10 "jobs": [
11 {
12 "linkedinIdentifier": "4081332168",
13 "title": "Software Engineer, Back-End, Data Center Network Planning",
14 "companyName": "Google",
15 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
16 "location": "Sunnyvale",
17 "url": "https://www.linkedin.com/jobs/view/4081332168",
18 "creationDate": null,
19 "repostDate": null,
20 "experienceLevel": null,
21 "contractType": null
22 },
23 {
24 "linkedinIdentifier": "4093221619",
25 "title": "Data Center Mechanical/Thermal Cooling Engineer",
26 "companyName": "Google",
27 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
28 "location": "Sunnyvale",
29 "url": "https://www.linkedin.com/jobs/view/4093221619",
30 "creationDate": null,
31 "repostDate": null,
32 "experienceLevel": null,
33 "contractType": null
34 }
35 ]
36}
1{
2 "success": true,
3 "credits_left": 90000,
4 "rate_limit_left": 19000,
5 "metadata": {
6 "current_page": 1,
7 "per_page": 100,
8 "total": 500
9 },
10 "jobs": [
11 {
12 "linkedinIdentifier": "4081332168",
13 "title": "Software Engineer, Back-End, Data Center Network Planning",
14 "companyName": "Google",
15 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
16 "location": "Sunnyvale",
17 "url": "https://www.linkedin.com/jobs/view/4081332168",
18 "creationDate": null,
19 "repostDate": null,
20 "experienceLevel": null,
21 "contractType": null
22 },
23 {
24 "linkedinIdentifier": "4093221619",
25 "title": "Data Center Mechanical/Thermal Cooling Engineer",
26 "companyName": "Google",
27 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
28 "location": "Sunnyvale",
29 "url": "https://www.linkedin.com/jobs/view/4093221619",
30 "creationDate": null,
31 "repostDate": null,
32 "experienceLevel": null,
33 "contractType": null
34 }
35 ]
36}
1{
2 "success": true,
3 "credits_left": 90000,
4 "rate_limit_left": 19000,
5 "metadata": {
6 "current_page": 1,
7 "per_page": 100,
8 "total": 500
9 },
10 "jobs": [
11 {
12 "linkedinIdentifier": "4081332168",
13 "title": "Software Engineer, Back-End, Data Center Network Planning",
14 "companyName": "Google",
15 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
16 "location": "Sunnyvale",
17 "url": "https://www.linkedin.com/jobs/view/4081332168",
18 "creationDate": null,
19 "repostDate": null,
20 "experienceLevel": null,
21 "contractType": null
22 },
23 {
24 "linkedinIdentifier": "4093221619",
25 "title": "Data Center Mechanical/Thermal Cooling Engineer",
26 "companyName": "Google",
27 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
28 "location": "Sunnyvale",
29 "url": "https://www.linkedin.com/jobs/view/4093221619",
30 "creationDate": null,
31 "repostDate": null,
32 "experienceLevel": null,
33 "contractType": null
34 }
35 ]
36}
1{
2 "success": true,
3 "credits_left": 90000,
4 "rate_limit_left": 19000,
5 "metadata": {
6 "current_page": 1,
7 "per_page": 100,
8 "total": 500
9 },
10 "jobs": [
11 {
12 "linkedinIdentifier": "4081332168",
13 "title": "Software Engineer, Back-End, Data Center Network Planning",
14 "companyName": "Google",
15 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
16 "location": "Sunnyvale",
17 "url": "https://www.linkedin.com/jobs/view/4081332168",
18 "creationDate": null,
19 "repostDate": null,
20 "experienceLevel": null,
21 "contractType": null
22 },
23 {
24 "linkedinIdentifier": "4093221619",
25 "title": "Data Center Mechanical/Thermal Cooling Engineer",
26 "companyName": "Google",
27 "companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1742428800&v=beta&t=fRFa5F7PMhVSlTNmwx1Ow2_FkX-GdS1E8zV52c433eo",
28 "location": "Sunnyvale",
29 "url": "https://www.linkedin.com/jobs/view/4093221619",
30 "creationDate": null,
31 "repostDate": null,
32 "experienceLevel": null,
33 "contractType": null
34 }
35 ]
36}
1const axios = require('axios');
2
3const API_KEY = 'YOUR_API_KEY'; // Replace with your API key from the Scrapin dashboard
4const LINKEDIN_TARGET = 'LINKEDIN_URL_OR_PROFILE_ID'; // Replace with the LinkedIn URL or profile ID you want to fecth
5
6const getLinkedInProfile = async () => {
7 const endpoint = `https://api.scrapin.io/enrichment/company/activities?apikey=${API_KEY}&linkedinUrl=${LINKEDIN_TARGET}`;
8
9 try {
10 const response = await axios.get(endpoint);
11 console.log('Data:', response.data);
12 } catch (error) {
13 console.error('Error:', error);
14 }
15};
16
17getLinkedInProfile();
Supporting smooth integration
Our API is designed for seamless integration, providing developers with comprehensive documentation, real-time support for popular programming languages.
With intuitive endpoints and consistent data structures, you can effortlessly incorporate our services into your existing systems.
Whether you're building a Sales platform, or recruitment tool, our API ensures a streamlined development process.
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
The LinkedIn Scraping Struggle Is Real.
Suspensions, bans, or worse—legal gray areas—loom over every scrape. You need data, but not at the cost of your company’s reputation. ScrapIn operates within the legal framework, ensuring full compliance with GDPR, CCPA, and other data protection laws.

.png)
Two ways to use API
We've created a user-friendly ecosystem to enhance your experience and provide the tools you need for satisfaction.
1{
2 "Version": "2012-10-17",
3 "Statement": [
4 {
5 "Action": [
6 "application:Describe*",
7 "autoscaling:Describe*",
8 "ce:Describe*",
9 "ce:Get*",
10 "ce:List*",
11 "cloudwatch:GetData",
12 "ec2:Describe*",
13 "ec2:AcceptReserved",
14 "ec2:CancelReservedInstancesListing",
15 "ec2:CreateReservedInstancesListing",
16 "ec2:DeleteQueuedReservedInstances",
17 "ec2:ModifyReservedInstances",
18 "ec2:PurchaseHostReservation",
19 "ec2:PurchaseReservedInstancesOffering",
20 "rds:Describe*",
21 "rds:List*"
22 ]
23 }
24 ]
25}
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
Query our API using an email, full name, or name + company, and retrieve detailed LinkedIn-based profiles. Our engine searches billions of public records and online signals to return accurate, real-time person data including job titles, employers, locations, education, and more.
1{
2 "Version": "2012-10-17",
3 "Statement": [
4 {
5 "Action": [
6 "application:Describe*",
7 "autoscaling:Describe*",
8 "ce:Describe*",
9 "ce:Get*",
10 "ce:List*",
11 "cloudwatch:GetData",
12 "ec2:Describe*",
13 "ec2:AcceptReserved",
14 "ec2:CancelReservedInstancesListing",
15 "ec2:CreateReservedInstancesListing",
16 "ec2:DeleteQueuedReservedInstances",
17 "ec2:ModifyReservedInstances",
18 "ec2:PurchaseHostReservation",
19 "ec2:PurchaseReservedInstancesOffering",
20 "rds:Describe*",
21 "rds:List*"
22 ]
23 }
24 ]
25}


.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
Connect our API to your CRM, forms, or product flows to instantly enhance user records. Whether enriching leads, users, or signups, our service integrates smoothly with your workflows, returning structured data you can trust.
Scrape Any Data from Linkedin, Without Limits
A streamlined LinkedIn scraper API for real-time data scraping of complete profiles and company information at scale.
.png)

