Endpoints
| Endpoint | Returns | Price |
|---|---|---|
POST /linkedin-post | Post text, author, timestamps, engagement, media, reshared content, and initial comments | $0.012 per request |
POST /linkedin-post-reactions | People who reacted and their reaction types | $0.012 per page |
POST /linkedin-post-comments | Comments, authors, timestamps, permalinks, and engagement | $0.012 per page |
ugcPost, or share identifier. Failed lookups are refunded automatically.
Get post details
result.post and any initial comments available in result.comments.
Get reactions
The first request needs only the post URL:pagination.token is not null, pass it back with the same post URL:
pagination.token is null. The response also provides page, pages, and total_reactions.
Get comments
The first request needs only the post URL:pagination.token is not null, pass it back with the same post URL:
pagination.token is null.
Build an engagement workflow
A typical workflow is:- Call
/linkedin-postfor the post content and aggregate engagement. - Paginate
/linkedin-post-reactionsto collect people who reacted. - Paginate
/linkedin-post-commentsto collect commenters and discussion context. - Use returned LinkedIn profile URLs with person enrichment endpoints when you need additional contact data.