Enrich API Documentation
  • Introduction
    • Authentication
    • Rate Limit
    • Credit Usage
  • Reference
    • Check Credit Usage
    • Email to Profile data
    • Email to IP
    • Email Finder
    • Profile URL to Work Email V2
    • Profile URL to Personal Email
    • Verify Emails—Even Behind Catch-Alls
    • Company Lookup
    • Company Funding and Traffic
    • Linkedin Public Profile Enrichment
    • Phone Number Finder
    • Find post details by URL
    • Search Posts
    • Bulk enrichment
    • Email to Phone Number
    • Email to Person Lite
    • Reverse email append
    • Disposable/Spam Email Check
    • IP to Company
    • Logo API
    • Search People Activities
    • Search Company Activities
    • Search Post Reactions
    • Search Post Reactions by URL
    • Search Post Comments
    • Search Post Comments by URL
    • Search Company
    • Search Similar Companies
    • Search People
    • Sales Pointer - Dynamic Filters
    • Sales Pointer - People
    • Sales Pointer - People by URL
    • Sales Pointer - Company
    • Sales Pointer - Company by URL
    • Search Company Employees
    • Search Jobs
    • Web search
    • Serp Search
    • News Search
    • Maps Search
    • Places Search
    • Videos Search
    • Shopping Search
    • Image Search
  • Changelog
Powered by GitBook
On this page
  1. Reference

Search Post Reactions

Retrieve a paginated list of users who reacted to a specific LinkedIn post, filtered by the type of reaction (e.g., likes, celebrates, supports). It helps in understanding audience engage

cURL 'https://api.enrich.so/v1/api/search-reactions?post_urn=urn:li:activity:7231931952839196672&reaction_type=like&page=1' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
const axios = require('axios');

axios.get('https://api.enrich.so/v1/api/search-reactions?post_urn=urn:li:activity:7231931952839196672&reaction_type=like&page=1', {
    headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });// Some code
import requests
payload = {'post_urn': 'urn:li:activity:7231931952839196672', 'reaction_type': 'like', 'page': 1}
headers = {'accept': 'application/json', 'authorization': 'Bearer <token>'}
resp = requests.get('https://api.enrich.so/v1/api/search-reactions', params=payload, headers=headers)
print (resp.text)
OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
  .url("https://api.enrich.so/v1/api/search-reactions?post_urn=urn:li:activity:7231931952839196672&reaction_type=like&page=1")
  .get()
  .addHeader("accept", "application/json")
  .addHeader("authorization", "Bearer <token>")
  .build();

Response response = client.newCall(request).execute();
require 'uri'
require 'net/http'

url = URI("https://api.enrich.so/v1/api/search-reactions?post_urn=urn:li:activity:7231931952839196672&reaction_type=like&page=1")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.enrich.so/v1/api/search-reactions?post_urn=urn:li:activity:7231931952839196672&reaction_type=like&page=1",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: Bearer <token>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}

"reaction_type" can be one of "all", "love", "celebrate", "insightful", "funny"

Example response

Status code: 200 OK

{
    "success": true,
    "message": "Reactions for post found.",
    "data": {
        "page": 1,
        "total_page": 1,
        "num": 10,
        "data": [
            {
                "reaction_type": "like",
                "reactor": {
                    "name": "Langston Menezes",
                    "sub_title": "Cyber Security Operations Analyst at NYISO",
                    "profile_id": "ACoAACDNpkEBEqfx8F-6JCCp0xZXDLdzBfaya00",
                    "profile_picture": "",
                    "li_url": "https://www.linkedin.com/in/ACoAACDNpkEBEqfx8F-6JCCp0xZXDLdzBfaya00"
                }
            },
            {
                "reaction_type": "like",
                "reactor": {
                    "name": "Varun C Shah",
                    "sub_title": "Management Graduate| Ex Highperformr.ai, Ex AstraZeneca | Strategic Consulting | Brand Management | Marketing Strategy |",
                    "profile_id": "ACoAADdUTGYB1ZBcfIlAtcQW5gbuzPWu9P28Mg0",
                    "profile_picture": "https://media.licdn.com/dms/image/v2/D5603AQHIz40iMyvjJg/profile-displayphoto-shrink_800_800/B56ZUigizHHQAc-/0/1740040712173?e=1749686400&v=beta&t=dxXIUYw0eI6x4oUMGYj0z4XOgHO4VuW6fU_-tqYg4FU",
                    "li_url": "https://www.linkedin.com/in/ACoAADdUTGYB1ZBcfIlAtcQW5gbuzPWu9P28Mg0"
                }
            },
            {
                "reaction_type": "like",
                "reactor": {
                    "name": "Munish Nanda",
                    "sub_title": "Marketing and Growth | Digital Marketing Strategist | Media Buying | Previous lives at Gartner, Pulse.qa (Acquired by Gartner), CreatorOS (Questbook) and Josh Talks.",
                    "profile_id": "ACoAABj2nDMBl9_UZmGS60KBzu5Dr3LmioWeXek",
                    "profile_picture": "",
                    "li_url": "https://www.linkedin.com/in/ACoAABj2nDMBl9_UZmGS60KBzu5Dr3LmioWeXek"
                }
            },
            {
                "reaction_type": "like",
                "reactor": {
                    "name": "Robert Fon",
                    "sub_title": "Structured Company-Level Intelligence for Investment Professionals and Sales Teams | PredictLeads Growth Operations",
                    "profile_id": "ACoAAC-wtvcBD2V6mnNPtZ61MRwh0nKRPRzPUnw",
                    "profile_picture": "https://media.licdn.com/dms/image/v2/D4D03AQE9H80gxnYFug/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1727986728959?e=1749686400&v=beta&t=Ta_zh0yL7VUbZKXRReLfRv7NYMrIHQUgUXG99oALePI",
                    "li_url": "https://www.linkedin.com/in/ACoAAC-wtvcBD2V6mnNPtZ61MRwh0nKRPRzPUnw"
                }
            },
            {
                "reaction_type": "like",
                "reactor": {
                    "name": "Devanshu L.",
                    "sub_title": "Head of Growth @ Maximise.ai Enrich.so | Building the Future of GTM: Real-Time Visitor Identification, Data Enrichment, and much more.",
                    "profile_id": "ACoAABwanPoBF7fiCMgDJrnr0LmK0DqGWNubnNQ",
                    "profile_picture": "https://media.licdn.com/dms/image/v2/D5603AQGfbpb0g4jSrg/profile-displayphoto-shrink_800_800/B56ZR0Dk7KGoAc-/0/1737113883686?e=1749686400&v=beta&t=V2HbK2hHYm-lI2uFi9XL_8vgZwJG9ouoKh0pkZfXRss",
                    "li_url": "https://www.linkedin.com/in/ACoAABwanPoBF7fiCMgDJrnr0LmK0DqGWNubnNQ"
                }
            },
            {
                "reaction_type": "like",
                "reactor": {
                    "name": "James Vitale",
                    "sub_title": "Leading revenue | Providing guidance to operators | Delivering return",
                    "profile_id": "ACoAAAhHn88BAvktP7rQbsl_v2jbKoF2LbAdU84",
                    "profile_picture": "https://media.licdn.com/dms/image/v2/D5635AQGVObckxQZY7A/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1734368056663?e=1745067600&v=beta&t=gg3klZRKtw0j8OTbr31sAUvR0yukXGUyqKLk39qhH9A",
                    "li_url": "https://www.linkedin.com/in/ACoAAAhHn88BAvktP7rQbsl_v2jbKoF2LbAdU84"
                }
            },
            {
                "reaction_type": "empathy",
                "reactor": {
                    "name": "Rahul Lakhaney",
                    "sub_title": "Co-Founder, Enrich.so & Maximise.ai | Powering GTM Teams & AI Agents with Real-time People & Company Data",
                    "profile_id": "ACoAAAwW2T0BMMzsZrZE1xdyrBdNgflzoeAHq5A",
                    "profile_picture": "https://media.licdn.com/dms/image/v2/D4D03AQH9Lx-43w5blA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1728895236037?e=1749686400&v=beta&t=Vg2m4jHluLSmtU-qGaX04ll7hZKOJ2wN61I4J0sK-9I",
                    "li_url": "https://www.linkedin.com/in/ACoAAAwW2T0BMMzsZrZE1xdyrBdNgflzoeAHq5A"
                }
            }
        ]
    },
    "total_credits": 36075,
    "credits_used": 22444.049999999548,
    "credits_remaining": 13630.950000000452
}
PreviousSearch Company ActivitiesNextSearch Post Reactions by URL

Last updated 1 month ago