curl --request POST \
--url https://api.example.com/v2/content \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"post_url": "<string>",
"reaction_type": "<string>",
"company_url": "<string>"
}
}
'{
"success": true,
"data": {
"reacted": true,
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7654321098765432100",
"reaction_type": "CELEBRATE"
},
"metadata": {
"action": "react",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
React to a post with a specific reaction type.
curl --request POST \
--url https://api.example.com/v2/content \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"post_url": "<string>",
"reaction_type": "<string>",
"company_url": "<string>"
}
}
'{
"success": true,
"data": {
"reacted": true,
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7654321098765432100",
"reaction_type": "CELEBRATE"
},
"metadata": {
"action": "react",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
company_url parameter.
"react".Show params properties
"LIKE", "CELEBRATE", "SUPPORT", "FUNNY", "LOVE", "INSIGHTFUL". Default is "LIKE".{
"success": true,
"data": {
"reacted": true,
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7654321098765432100",
"reaction_type": "CELEBRATE"
},
"metadata": {
"action": "react",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?