Get Profile Reactions
curl --request POST \
--url https://api.linkupapi.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"profile_url": "<string>",
"count": 123,
"cursor": "<string>"
}
}
'{
"success": true,
"data": {
"reactions": [
{
"reaction_id": "urn:li:fsd_update:(urn:li:activity:7453841996378718208,PROFILE_REACTIONS,DEBUG_REASON,DEFAULT,false)",
"reaction_type": "LIKE",
"reaction_target": "POST",
"reaction_time": "2d",
"reaction_time_days": 2,
"reactor": {
"name": "Jane Doe",
"profile_url": "https://www.linkedin.com/in/jane-doe-42",
"profile_picture": "https://media.licdn.com/dms/image/...",
"entity_urn": "ACoAA...",
"headline": "Product Manager at Acme Corp"
},
"post": {
"urn": "urn:li:ugcPost:7000000000000000001",
"url": "https://www.linkedin.com/feed/update/urn:li:ugcPost:7000000000000000001",
"content": "Excited to announce our new product launch...",
"author": {
"name": "John Smith",
"profile_url": "https://www.linkedin.com/in/john-smith-99",
"entity_urn": "urn:li:fsd_profile:ACoAA..."
}
}
}
],
"total_results": 1,
"profile_url": "https://www.linkedin.com/in/jane-doe-42/",
"entity_urn": "ACoAA...",
"profile_urn": "urn:li:fsd_profile:ACoAA...",
"pagination": {
"results_per_page": 50,
"pages_fetched": 1,
"has_more": true,
"next_cursor": "dXJuOmxpOmFjdGl2aXR5Ojc0NDg0ODQ5NDgyODc3Mzc4NTYtMTc3NTg1NzE5Nzc2Nw=="
}
},
"metadata": {
"action": "get_reactions",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T08:40:31Z"
}
}
Profiles
Get Profile Reactions
Retrieve the reactions (likes, celebrates, etc.) made by a user.
POST
/
v2
/
profiles
Get Profile Reactions
curl --request POST \
--url https://api.linkupapi.com/v2/profiles \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"profile_url": "<string>",
"count": 123,
"cursor": "<string>"
}
}
'{
"success": true,
"data": {
"reactions": [
{
"reaction_id": "urn:li:fsd_update:(urn:li:activity:7453841996378718208,PROFILE_REACTIONS,DEBUG_REASON,DEFAULT,false)",
"reaction_type": "LIKE",
"reaction_target": "POST",
"reaction_time": "2d",
"reaction_time_days": 2,
"reactor": {
"name": "Jane Doe",
"profile_url": "https://www.linkedin.com/in/jane-doe-42",
"profile_picture": "https://media.licdn.com/dms/image/...",
"entity_urn": "ACoAA...",
"headline": "Product Manager at Acme Corp"
},
"post": {
"urn": "urn:li:ugcPost:7000000000000000001",
"url": "https://www.linkedin.com/feed/update/urn:li:ugcPost:7000000000000000001",
"content": "Excited to announce our new product launch...",
"author": {
"name": "John Smith",
"profile_url": "https://www.linkedin.com/in/john-smith-99",
"entity_urn": "urn:li:fsd_profile:ACoAA..."
}
}
}
],
"total_results": 1,
"profile_url": "https://www.linkedin.com/in/jane-doe-42/",
"entity_urn": "ACoAA...",
"profile_urn": "urn:li:fsd_profile:ACoAA...",
"pagination": {
"results_per_page": 50,
"pages_fetched": 1,
"has_more": true,
"next_cursor": "dXJuOmxpOmFjdGl2aXR5Ojc0NDg0ODQ5NDgyODc3Mzc4NTYtMTc3NTg1NzE5Nzc2Nw=="
}
},
"metadata": {
"action": "get_reactions",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T08:40:31Z"
}
}
Overview
Fetches the list of reactions made by a specified user on posts and comments. Pagination is cursor-based — pass thenext_cursor returned by a previous call to fetch the next page.
This endpoint consumes 1 credit per 10 results returned. LinkedIn returns up to 50 reactions per internal request, so requesting
count: 100 triggers only 2 upstream calls.Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"get_reactions".Show params properties
Show params properties
Response
Indicates whether the request was successful.
Show data properties
Show data properties
List of reactions made by the user.
Show reaction item properties
Show reaction item properties
Internal identifier of the reaction update.
Type of reaction:
LIKE, LOVE, CELEBRATE, SUPPORT, INSIGHTFUL, or FUNNY.Target of the reaction:
POST or COMMENT.Relative time of the reaction (e.g.
"6h", "3d").Age of the reaction expressed in days.
The author of the reaction (name, profile_url, profile_picture, entity_urn, headline).
The post that was reacted to (urn, url, content, author).
When
reaction_target == "COMMENT", the comment that was reacted to (content, author).Number of reactions returned in this response.
The LinkedIn profile URL that was queried.
The LinkedIn entity URN of the queried profile.
The full
urn:li:fsd_profile:... URN of the queried profile.Show pagination properties
Show pagination properties
Maximum batch size used per upstream request (50).
Number of internal upstream batches consumed to assemble this response.
true if more results are available — pass next_cursor in the next request.Cursor to send as
cursor in the next request to resume pagination. null when the end is reached.{
"success": true,
"data": {
"reactions": [
{
"reaction_id": "urn:li:fsd_update:(urn:li:activity:7453841996378718208,PROFILE_REACTIONS,DEBUG_REASON,DEFAULT,false)",
"reaction_type": "LIKE",
"reaction_target": "POST",
"reaction_time": "2d",
"reaction_time_days": 2,
"reactor": {
"name": "Jane Doe",
"profile_url": "https://www.linkedin.com/in/jane-doe-42",
"profile_picture": "https://media.licdn.com/dms/image/...",
"entity_urn": "ACoAA...",
"headline": "Product Manager at Acme Corp"
},
"post": {
"urn": "urn:li:ugcPost:7000000000000000001",
"url": "https://www.linkedin.com/feed/update/urn:li:ugcPost:7000000000000000001",
"content": "Excited to announce our new product launch...",
"author": {
"name": "John Smith",
"profile_url": "https://www.linkedin.com/in/john-smith-99",
"entity_urn": "urn:li:fsd_profile:ACoAA..."
}
}
}
],
"total_results": 1,
"profile_url": "https://www.linkedin.com/in/jane-doe-42/",
"entity_urn": "ACoAA...",
"profile_urn": "urn:li:fsd_profile:ACoAA...",
"pagination": {
"results_per_page": 50,
"pages_fetched": 1,
"has_more": true,
"next_cursor": "dXJuOmxpOmFjdGl2aXR5Ojc0NDg0ODQ5NDgyODc3Mzc4NTYtMTc3NTg1NzE5Nzc2Nw=="
}
},
"metadata": {
"action": "get_reactions",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T08:40:31Z"
}
}
Was this page helpful?
⌘I