Skip to main content
POST
/
linkedin-post-reactions
Get LinkedIn post reactions
curl --request POST \
  --url https://api.tryhuntr.com/linkedin-post-reactions \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7430337505431957506"
}
'
{
  "success": true,
  "request_id": "req_1746123456_lr1x2y",
  "post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7430337505431957506",
  "price": 0.012,
  "credits_remaining": 4.988,
  "post_urn": "urn:li:activity:7430337505431957506",
  "reactions": [
    {
      "actor": {
        "name": "Jane Doe",
        "headline": "Founder",
        "urn": "ACoAAExample",
        "id": "25082785",
        "url": "https://www.linkedin.com/in/janedoe",
        "profile_picture_url": "https://example.com/jane.jpg"
      },
      "reaction_type": "PRAISE"
    }
  ],
  "page": 1,
  "pages": 4,
  "total_reactions": 36,
  "pagination": {
    "page_size": 10,
    "token": "opaque-next-page-token"
  }
}

Authorizations

x-api-key
string
header
required

Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on all authenticated requests.

Body

application/json
post_url
string
required

Public LinkedIn post URL.

pagination
object

Response

Reaction page returned.

success
boolean
request_id
string
post_url
string
price
number

$0.012 per page.

credits_remaining
number
post_urn
string
reactions
object[]
page
integer
pages
integer
total_reactions
integer
pagination
object