Post Interactions API

Retrieve interactions such as likes, comments, and shares on LinkedIn posts.

9+
Data Endpoints
130+
Data Points
<5
Minutes to Set-up
99
%
Successful Query
1{
2  "success": true,
3  "post": {
4    "id": "7242064211135107072",
5    "text": "Our latest innovation in AI will transform how businesses operate.",
6    "author": {
7      "id": "ACoAAAVx6k8BWYOybRvvm1pR9TdIPXoqM9Da2qE",
8      "name": "Mickael Wegerich",
9      "publicIdentifier": "mickaelwegerich"
10    },
11    "activityUrl": "https://www.linkedin.com/feed/update/urn:li:activity:7242064211135107072"
12  },
13  "interactions": [
14    {
15      "interactionType": "like",
16      "person": {
17        "id": "ACoAACQYxG8BXZLwbXsf2Q9v8CdFXYQldBJACQqE",
18        "name": "John Doe",
19        "publicIdentifier": "john-doe",
20        "profileUrl": "https://www.linkedin.com/in/john-doe"
21      }
22    },
23    {
24      "interactionType": "comment",
25      "person": {
26        "id": "ACoAADKbBkqBWu9p3NbsyQi6sZcJJLb7ZpktyQA",
27        "name": "Jane Smith",
28        "publicIdentifier": "jane-smith",
29        "profileUrl": "https://www.linkedin.com/in/jane-smith"
30      },
31      "commentText": "This is a great update! Looking forward to more."
32    }
33  ],
34  "credits_left": 9000,
35  "rate_limit_left": 19000
36}

Post Interactions JSON Structure

Explore the structure of interaction data, including detailed user engagement on posts.

JavaScript Integration for Post Interactions

Easily fetch post interactions with this JavaScript integration guide.

1const axios = require('axios');
2
3const API_KEY = 'YOUR_API_KEY'; // Replace with your API key from the Scrapin dashboard
4const LINKEDIN_POST_URL = 'LINKEDIN_POST_URL'; // Replace with the LinkedIn post URL
5
6const getLinkedInProfile = async () => {
7  const endpoint = `https://api.scrapin.io/enrichment/post?apikey=${API_KEY}&linkedinUrl=${LINKEDIN_POST_URL}`;
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_POST_URL = 'LINKEDIN_POST_URL'; // Replace with the LinkedIn post URL
5
6const getLinkedInProfile = async () => {
7  const endpoint = `https://api.scrapin.io/enrichment/post?apikey=${API_KEY}&linkedinUrl=${LINKEDIN_POST_URL}`;
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.

GDPR
GDPR
DATA Compliance

The 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.

Aggregates data from multiple sources
Up-to-date informations

Choose Your Path. We Deliver It Your Way.

Whether you prefer real-time API access or bulk delivery to your cloud storage, our flexible data solutions adapt to your workflow—no rate limits, no lock-in, and full transparency at every step.

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}
EMAIL
ben@microsoft.com
title
Developer
industry
IA & Tech
city
New York
On-Demand via API

Get real-time access to public professional and company data—no delays, no outdated info. Enrich profiles, match contacts, fetch job listings, and track engagement signals instantly. Fast, flexible, and built to scale with your product.

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}
Job ID
Job ID
Database ID
Dataset Delivery

Need large-scale data? Get licensed, regularly updated datasets of public professional and company info—delivered straight to S3, GCP, or Snowflake. No API calls to manage, just clean, structured data ready for your tools, analytics, or products.

You Build AI Products, We Provide B2B Data

Focus on building your product—we handle the data layer. Our scalable solution eliminates the pain of managing scraping in-house, so you can move faster without compromise.

99.2
%
Uptime Status
45
M
Requests per day
<4
s
Reponse Time