Skip to main content

Data Retrieval

Retrieving post data

To retrieve LinkedIn post data, you need to include openPost action in your workflow. Here's an example:

Workflow:


{
  "actionType": "openPost",
  "postUrl": "https://www.linkedin.com/posts/post1"
}

Completion:


{
  "actionType": "openPost",
  "success": true,
  "data": {
    "time": "2023-01-02T12:30:00Z",
    "type": "original",
    "repostText": null,
    "text": "Check out our latest product launch!",
    "images": [
      "https://static.linkedin.com/image1.jpg",
      "https://static.linkedin.com/image2.jpg"
    ],
    "hasVideo": false,
    "hasPoll": false,
    "reactionCount": 27,
    "commentCount": 8
  }
}

This page provides examples of workflows and their completions. For detailed documentation on constraints, parameters, and possible results of specific actions, always refer to the corresponding action documentation pages.