# Read the comments on a company page post

**Use case:** 

Get the comments on a company page's posts, each one as a row with its text, author and date. A post whose own counter already shows zero comments is skipped and never billed.

## Input

```json
{
  "companies": [
    "https://www.linkedin.com/company/microsoft/"
  ],
  "maxPosts": 25,
  "postedLimit": "none",
  "contentType": "all",
  "sortBy": "date",
  "includeSharedPosts": true,
  "includeReposts": true,
  "latestPostOnly": false,
  "includeReactions": false,
  "maxReactionsPerPost": 5,
  "includeComments": true,
  "maxCommentsPerPost": 50
}
```

## Output

```json
{
  "type": {
    "label": "Row Type",
    "format": "string"
  },
  "person.name": {
    "label": "Name",
    "format": "text"
  },
  "person.headline": {
    "label": "Headline",
    "format": "text"
  },
  "comment_text": {
    "label": "Comment",
    "format": "string"
  },
  "commented_at": {
    "label": "Commented At",
    "format": "string"
  },
  "is_author_comment": {
    "label": "By The Post Author",
    "format": "boolean"
  },
  "is_pinned": {
    "label": "Pinned",
    "format": "boolean"
  },
  "person.linkedin_url": {
    "label": "LinkedIn URL",
    "format": "link"
  },
  "comment_url": {
    "label": "Comment URL",
    "format": "string"
  },
  "post_url": {
    "label": "Post URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Company Posts Scraper ✅ NO COOKIES](https://apify.com/atomus/linkedin-company-posts-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/atomus/linkedin-company-posts-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/atomus/linkedin-company-posts-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
