Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$1.7 / 1k reactions Extract reactions from LinkedIn posts and comments, providing likes and appreciations

Endpoint

POST /api/v1/agents/linkedin/post-reactions/run

Parameters

posts
array
required
List · LinkedIn post URLs to scrape reactions from. One per line.
maxResults
integer
default:100
Number · Reactions per post. Use 0 for all.
reactionTypeFilter
array
Multi-select · Filter to specific reaction types. Leave empty for all.Options: LIKE, PRAISE, EMPATHY, APPRECIATION, INTEREST, ENTERTAINMENTLegend: LIKE = Like, PRAISE = Praise (Celebrate), EMPATHY = Empathy (Support), APPRECIATION = Appreciation (Love), INTEREST = Interest (Insightful), ENTERTAINMENT = Entertainment (Funny)

Response columns

FieldDisplay nameType
sourcePostUrlSource Post URLurl
reactionReactiontext
reactorUrlReactor URLurl
reactorReactortext
reactorTitleReactor Titletext
reactorAvatarReactor Avatarurl

Example

curl -X POST https://api.mindcase.co/api/v1/agents/linkedin/post-reactions/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "posts": [
      "https://www.linkedin.com/posts/reidhoffman_ten-years-ago-if-youd-told-me-a-pope-would-activity-7455254577534107648-o-Gf"
    ],
    "maxResults": 10
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "sourcePostUrl": "https://www.linkedin.com/posts/reidhoffman_ten-years-ago-if-youd-told-me-a-pope-would-activity-7455254577534107648-o-Gf",
      "reaction": "LIKE",
      "reactorUrl": "https://www.linkedin.com/in/ACoAAAAXQFsByNh5A8RPbn8mmjIJ5juhNZ1vZEw",
      "reactor": "Charley Moore",
      "reactorTitle": "Founder, Invictus AI",
      "reactorAvatar": "https://media.licdn.com/dms/image/v2/D5635AQHHjlmKZS0Ycw/profile-framedphoto-shrink_800_800/B56Zw0qhrJIYAo-/0/1770410089597?e=1778425200&v=beta&t=6Il8s1Q19sMAXMLLRTRwh8MzmT58h445WsjbcR4wXjA"
    }
  ]
}