Skip to main content
GET
Get reactions on a post

Endpoint

Authentication

Include your API key in the request header:

Parameters

string
required
Professional post URL or URN.Examples:
  • https://www.linkedin.com/posts/username_some-post-slug-1234567890-abcd
  • urn:li:activity:7287782484287606784
  • urn:li:ugcPost:7287782484287606784
integer
default:"100"
Number of reactions to fetch per page.
  • Minimum: 1
  • Maximum: 100
  • Default: 100
integer
default:"0"
Offset for pagination.
  • Default: 0

Response

array
Array of reactions on the post
boolean
Indicates whether there are more reactions to fetch.

Example Request

Example Response

Errors

See Error Handling for the full list of error codes and recommended handling.
  • 400MISSING_PARAMETER, INVALID_URN
  • 401INVALID_API_KEY
  • 404POST_NOT_FOUND
  • 402QUOTA_EXHAUSTED
  • 429RATE_LIMITED
  • 500INTERNAL_ERROR
  • 503SERVICE_UNAVAILABLE

Pagination

To fetch all reactions from a post with many reactions, use offset pagination:
  1. Make an initial request with start=0
  2. If hasMore is true, increment start by count in your next request
  3. Continue until hasMore is false

Notes

This endpoint consumes 1 credit from your monthly quota per API call, regardless of the count parameter value.
You can pass either a professional post URL (e.g. https://www.linkedin.com/posts/...) or a post URN (e.g. urn:li:activity:...). When a URL is provided, the API automatically resolves it to the correct activity URN.

Authorizations

X-API-Key
string
header
required

Query Parameters

postUrlOrUrn
string
required

Professional post URL or URN

Example:

"https://www.linkedin.com/posts/username_post-slug-1234567890-abcd"

count
integer
default:100

Number of reactions to fetch (default: 100)

Required range: 1 <= x <= 100
start
integer
default:0

Offset of the first item to return. This endpoint pages by offset: advance start by the number of items you received. Keep requesting while hasMore is true; an empty page ends the list.

Required range: x >= 0

Response

Successfully fetched post reactions

reactions
object[]
hasMore
boolean

Whether more reactions are available