Get Profile Reactions
Fetch posts that a professional profile has reacted to
Endpoint
Authentication
Include your API key in the request header:Parameters
- Profile URN, recommended for consistency: a profile’s public identifier (slug) can change over time, the URN does not. Example:
urn:li:fsd_profile:ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc - Public identifier (slug), also fine. Example:
williamhgates - Profile URL. Example:
https://www.linkedin.com/in/williamhgates(a trailing slash makes no difference)
linkedin.com/in/<slug>). Pass just the slug, not the /in/ prefix.- Minimum: 1
- Maximum: 50
- Default: 10
- Default: 0
Response
Example Request
Example Response
Errors
See Error Handling for the full list of error codes and recommended handling.400MISSING_PARAMETER/INVALID_URN401INVALID_API_KEY404PROFILE_NOT_FOUND429RATE_LIMITED/QUOTA_EXHAUSTED500INTERNAL_ERROR503SERVICE_UNAVAILABLE
Pagination
To fetch all reactions from a profile, use pagination:- Make an initial request without
paginationToken - If
hasMoreistrue, use the returnedpaginationTokenin your next request - Continue until
hasMoreisfalse
Reaction Types
| Value | Platform Label | Description |
|---|---|---|
LIKE | Like | Standard like reaction |
EMPATHY | Love | Heart/love reaction |
ENTERTAINMENT | Funny | Laughing face reaction |
INTEREST | Insightful | Lightbulb/insightful reaction |
PRAISE | Celebrate | Clapping/celebrate reaction |
APPRECIATION | Support | Hands/support reaction |
Notes
count parameter value. Failed requests (errors) do not count against your quota.Use Cases
Competitive intelligence
Interest analysis
Content research
Lead scoring
Authorizations
Query Parameters
The professional profile to fetch. Accepts a profile URN (recommended for consistency, since a profile's public identifier can change over time while the URN does not; example urn:li:fsd_profile:ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc), a public identifier/slug (also fine; example williamhgates), or a full profile URL (example https://www.linkedin.com/in/williamhgates; a trailing slash is ignored). The slug is the last path segment of a profile URL, so pass just the slug, not the /in/ prefix.
"urn:li:fsd_profile:ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc"
Number of reactions to fetch (default: 10)
1 <= x <= 50Offset for pagination (default: 0)
x >= 0Token for fetching the next page of reactions. Use the paginationToken from the previous response.