Retrieve your team feed post with Impressions count
Description
This API endpoint returns a LinkedIn post from your team feed, including post content and performance metrics such as impressions and reactions.
Requirements
Before using this endpoint, ensure you have set up the Teamfluence API.
Endpoint
POST /{profile_id}/posts/retrieve
{profile_id}
represents your unique profile identifier, which can be found on the Profile page.
Request body
{
"post_id": "VM74m6LWKU2RiqOc",
"activity_urn": "urn:li:activity:73247506441944924163"
}
In order to retrieve the post data, provide at least one of the following fields:
post_id
- id of the post from team feed API.activity_urn
- internal activity URN defined by LinkedIn post object.
Response details
{
"id": "VM74m6LWKU2RiqOc",
"activity_urn": "urn:li:activity:7324750644194492416",
"type": "POST",
"content": "I saw this geometry trick on twitter/x a while ago and couldn’t believe it.\n\nApparently, you can check if a point is inside or outside a closed polyline using its winding number:\n\n- Take a closed polyline and a point you want to test inclusion of.\n- Traverse the polyline’s vertices from the point and sum the angle of each turn.\n- If the total turning adds up to a full loop → it’s inside\n- If it winds back to zero → it’s outside\n\nHad to try it in Grasshopper, and yep - it works! Even for concave polylines!! 🤯\n\nAm I the only one in computational design who missed this?! It's so simple and clean, yet really useful.",
"parent_content": null,
"author": "Emil Poulsen",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7324750644194492416?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7324750644194492416%2CMEMBER_SHARES%2CEMPTY%2CDEFAULT%2Cfalse%29&originTrackingId=FkOxauH10OvEZp98fBiqQA%3D%3D",
"image": null,
"parent_image": null,
"shares_num": 120,
"likes_num": 3466,
"impressions_num": 1080,
"comments_num": 660,
"published_at": "2025-05-04T11:04:00.862000"
}
Note: impressions count is not available when content was shared from third-party profile without adding any original content as a comment to it.