Person Activities API

Fetch LinkedIn posts, comments, and reactions from any LinkedIn profile.

9+

Data Enpoints

130+

Data Points

<5

Minutes to Set-up

99.99%

Successful Query

Person Activities JSON Structure

See the structured data format for activities like posts, comments, and reactions.


{
  "success": true,
  "posts": [
    {
      "id": "7254912034612379648",
      "text": "I'm proud that the Gates Foundation is opening a new office in Dakar, Senegal. Africa's development progress is a priority for the foundation, and I'm grateful for all our partners and staff who have worked so hard to make this happen.",
      "likesCount": 2449,
      "commentsCount": 372,
      "activityDate": "2024-10-23T17:50:18.799Z",
      "authorId": "ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc",
      "authorPublicIdentifier": "williamhgates",
      "authorName": "Bill Gates",
      "activityUrl": "https://www.linkedin.com/feed/update/urn:li:activity:7254912034612379648",
      "isRepublishedPost": true,
      "relatedPost": {
        "text": "We recently celebrated a momentous occasion with the official launch of the Bill & Melinda Gates Foundation's Senegal office! This significant step underscores our ongoing dedication to Africa's development goals and our commitment to collaborating with local partners.\n\nThe launch isn't just about opening doors—it's about forging pathways to innovative solutions that will save millions of lives across the continent. \n\nIt was great to have you with us Chris Elias and Paulin BASINGA and thanks for moderating a great discussion Raïssa OKOÏ !\n\nAs we move forward, we continue to learn, co-create, and deepen our relationships with key stakeholders, driving meaningful change for communities in Senegal and beyond.\n\n#BMGFSenegalLaunch #AfricaDevelopment #PartnershipForImpact",
        "activityDate": "2024-10-22T13:09:42.578Z",
        "authorId": "104421531",
        "authorPublicIdentifier": "gates-foundation-africa",
        "authorName": "Gates Foundation Africa",
        "activityUrl": "https://www.linkedin.com/feed/update/urn:li:activity:7254479030517698560"
      }
    }
  ],
  "comments": [
    {
      "text": "Thanks for having me. It's inspiring to see how far research for Alzheimer's has come.",
      "likesCount": 38,
      "commentsCount": 19,
      "activityDate": "2024-08-29T16:25:17.386Z",
      "authorId": "ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc",
      "authorName": "Bill Gates",
      "authorPublicIdentifier": "williamhgates",
      "post": {
        "text": "This afternoon, we welcomed Bill Gates as he toured labs at the Indiana University School of Medicine and met with key faculty members to learn more about the expansive Alzheimer's disease research happening right here in Indianapolis.",
        "likesCount": 3257,
        "commentsCount": 118,
        "activityDate": "2024-08-29T16:25:17.386Z",
        "authorId": "3323",
        "authorPublicIdentifier": "indiana-university-school-of-medicine",
        "authorName": "Indiana University School of Medicine",
        "activityUrl": "https://www.linkedin.com/posts/indiana-university-school-of-medicine_this-afternoon-we-welcomed-bill-gates-as-ugcPost-7231813250051383296-24DS?utm_source=combined_share_message&utm_medium=member_desktop_web",
        "relatedPost": null
      },
      "activityUrl": "https://www.linkedin.com/feed/update/urn:li:ugcPost:7231813250051383296?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A7231813250051383296%2C7234959305127444481%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287234959305127444481%2Curn%3Ali%3AugcPost%3A7231813250051383296%29"
    }
  ],
  "reactions": [
    {
      "type": "LIKE",
      "authorId": "ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc",
      "authorName": "Bill Gates",
      "authorPublicIdentifier": "williamhgates",
      "relatedComment": null,
      "relatedPost": {
        "text": "What an incredible week at Climate Week NYC! Climate Week brings together an ecosystem of people and organizations committed to building a sustainable future. I felt a sense of urgency combined with a strong commitment to change and getting the work done.\n\nOne highlight was my conversation with Bill Gates at an event hosted by Breakthrough Energy and CBRE focused on the Clean Industrial Revolution and the critical role of emerging climate technologies. Our partnership with Breakthrough Energy to decarbonize buildings, highlighted by our work with Luxwall, is a significant step forward in our net-zero commitment. \n\nWe further demonstrated the opportunity to decarbonize the built environment by honoring our work with the Javits Center. The Javits Centers' innovative microgrid featuring the largest rooftop solar array and battery storage system in Manhattan is an inspiring example of the solutions available now that can be scaled to any built environment. \n\nAnother memorable moment was speaking at Carnegie Hall during the Siemens Arts Program and Atlantik-Brücke e.V. event. It was an honor to reflect on the power of technology and culture to change the world, and to celebrate the enduring German-American friendship that has been pivotal in our journey. \n\nAs we move forward, the message is clear: partnerships are essential. No company can do this alone. The ecosystem of partners we have at #ClimateWeekNYC is crucial to delivering impact with greater speed and scale. \n\nThank you to everyone who made this week possible. Let's continue to push boundaries and take bold actions together. The future is ours to shape.  \n\n#Sustainability #NetZero #Innovation #CleanEnergy",
        "likesCount": 341,
        "commentsCount": 13,
        "activityDate": "2024-10-02T17:33:47.405Z",
        "authorId": "ACoAAARuJH4BUfWDnLosZmlFyNr6SrDaRFmmBK4",
        "authorPublicIdentifier": "barbara-humpton",
        "authorName": "Barbara Humpton",
        "activityUrl": "https://www.linkedin.com/posts/barbara-humpton_climateweeknyc-sustainability-netzero-ugcPost-7245556119614496768-Sufh?utm_source=combined_share_message&utm_medium=member_desktop_web",
        "relatedPost": null
      }
    }
  ],
  "credits_left": 15,
  "rate_limit_left": 19
}

JavaScript Integration for Person Activities

Implement person activity data fetching with this ready-to-use JavaScript snippet.


const axios = require('axios');

const API_KEY = 'YOUR_API_KEY'; // Replace with your API key from the Scrapin dashboard
const LINKEDIN_TARGET = 'LINKEDIN_URL_OR_PROFILE_ID'; // Replace with the LinkedIn URL or profile ID you want to fecth

const getLinkedInProfile = async () => {
  const endpoint = `https://api.scrapin.io/enrichment/activities?apikey=${API_KEY}&linkedinUrl=${LINKEDIN_TARGET}`;

  try {
    const response = await axios.get(endpoint);
    console.log('Data:', response.data);
  } catch (error) {
    console.error('Error:', error);
  }
};

getLinkedInProfile();

What our clients say

Still have doubts? Check out what our clients are saying about us on G2 and Product Hunt!

Stars - Elements Webflow Library - BRIX Templates

"ScrapIn has truly impressed me with its minimalistic design, ease of use, and incredibly powerful real-time scraping capabilities. The support team is extremely responsive and friendly, making the entire experience seamless. I encountered no bugs or frustrations throughout my journey, and it has made scraping LinkedIn profiles and company details so much more efficient.”

Tanguy L.

Small-Business (50 or fewer emp.)
Stars - Elements Webflow Library - BRIX Templates

“ScrapIn delivers exactly what they promise. The API is incredibly easy to use, allowing us to efficiently gather complete profiles and their information at scale. It's been a game-changer for our lead list generation and large-scale information collection.”

Erik Isberg

Small-Business (50 or fewer emp.)
Stars - Elements Webflow Library - BRIX Templates

We are building a service that actively uses LinkedIn to fetch profiles. We tried ScrapIn to achieve that goal. So far it works great and fast, it's easy to use and it allows us to get all the needed info: profiles basic info, job history, education history, skills etc.

Maksim Matlakhov

Small-Business (50 or fewer emp.)

Scrape Anything from LinkedIn, without limits.

A streamlined LinkedIn scraper API for real-time data scraping of profiles and company information at scale.
No credit card required
20 free requests
Try for free

Frequently Asked Question

Can I try for free ?

Yes sure! Trial plan include 20 requests with all the features of the paid plans. You can also self-host our open-source package if you want to manage scaling yourself.

What kind of data can I get ?

You can access all publicly data available on Person LinkedIn Profiles such as Job Title, Position History, Educational background and so on. You can also get all Company LinkedIn Profile data such as Industry, Employees, Website, Location ...

Is ScrapIn GDPR and CCPA compliant ?

Unlike most solutions on the market, we do not use a database (neither purchased nor built up from our clients). We have developed our own scraping algorithms. This allows us to be systematically up to date in the information we deliver.

How the data is up to date ?

All our data is gathered in real time, this is very interesting if you need to have always up-to-date data.

Open-source ?

We understand the need of transparency when you integrate a external service in your sofware. That's why you can also self-host our open-source package if you want to manage scaling yourself.

Can I cancel, upgrade, or downgrade anytime?

Yes. You can cancel, upgrade, or downgrade your plan at at any time. Downgrades will take place at the end of your plan cycle, while upgrades & cancellation will take place immediately.