> ## Documentation Index
> Fetch the complete documentation index at: https://mindcase.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# LinkedIn Profile Posts

> Get LinkedIn profile posts — content, media, reactions, and comments — from profile URLs, specifying post count

`$1.2 / 1k posts`

Get LinkedIn profile posts — content, media, reactions, and comments — from profile URLs, specifying post count

## Endpoint

`POST /api/v1/agents/linkedin/profile-posts/run`

## Parameters

<ParamField body="urls" type="array" required>
  **List** · LinkedIn profile URLs to scrape posts from. One per line.
</ParamField>

<ParamField body="maxResults" type="integer" default={50}>
  **Number** · Posts per profile. Use 0 for all.
</ParamField>

<ParamField body="postedLimit" type="string" default="any">
  **Dropdown** · Only posts within this time window.

  <Accordion title="Show all 8 options">
    `any`, `1h`, `24h`, `week`, `month`, `3months`, `6months`, `year`

    *Legend: `any` = Any time, `1h` = Past hour, `24h` = Past 24 hours, `week` = Past week, `month` = Past month, `3months` = Past 3 months, `6months` = Past 6 months, `year` = Past year*

    [View all 8 as a structured list →](/agents/linkedin/profile-posts/values#postedlimit)
  </Accordion>
</ParamField>

<ParamField body="includeQuotePosts" type="boolean">
  **Toggle** · Quote posts (shared with commentary).
</ParamField>

## Response columns

| Field                     | Display name               | Type    |
| ------------------------- | -------------------------- | ------- |
| `sourceProfileCompanyUrl` | Source Profile/Company URL | url     |
| `postUrl`                 | Post URL                   | url     |
| `postText`                | Post Text                  | text    |
| `posted`                  | Posted                     | text    |
| `author`                  | Author                     | text    |
| `authorInfo`              | Author Info                | text    |
| `authorUrl`               | Author URL                 | url     |
| `authorType`              | Author Type                | text    |
| `likes`                   | Likes                      | number  |
| `comments`                | Comments                   | number  |
| `shares`                  | Shares                     | number  |
| `reactions`               | Reactions                  | number  |
| `postImage`               | Post Image                 | url     |
| `videoThumbnail`          | Video Thumbnail            | url     |
| `videoUrl`                | Video URL                  | url     |
| `type`                    | Type                       | text    |
| `postedAtTimestamp`       | Posted At Timestamp        | integer |
| `articleDetails`          | Article Details            | object  |
| `documentDetails`         | Document Details           | object  |
| `authorHandle`            | Author Handle              | text    |
| `contentAttributes`       | Content Attributes         | array   |
| `authorAvatar`            | Author Avatar              | url     |

## Example

<CodeGroup>
  ```bash curl theme={null}
  curl -X POST https://api.mindcase.co/api/v1/agents/linkedin/profile-posts/run \
    -H "Authorization: Bearer mk_live_abc123def456" \
    -H "Content-Type: application/json" \
    -d '{
    "params": {
      "urls": [
        "https://www.linkedin.com/in/satyanadella/"
      ],
      "maxResults": 10
    }
  }'
  ```

  ```python Python theme={null}
  import requests

  resp = requests.post(
      "https://api.mindcase.co/api/v1/agents/linkedin/profile-posts/run",
      headers={"Authorization": "Bearer mk_live_abc123def456"},
      json={"params": {
      "urls": [
          "https://www.linkedin.com/in/satyanadella/"
      ],
      "maxResults": 10
  }},
  )
  data = resp.json()
  ```
</CodeGroup>

### Example response

```json Response theme={null}
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "sourceProfileCompanyUrl": "https://www.linkedin.com/in/satyanadella/",
      "postUrl": "https://www.linkedin.com/posts/satyanadella_microsoft-agent-365-now-generally-available-activity-7456016232933126144-SLcw",
      "postText": "Agent 365 is now generally available!\n\nWe\u2019re extending the systems customers already use for identity, security, governance, and management to every AI agent and their interactions across the enterprise. \n\nRead more: https://lnkd.in/dJD2GV6A",
      "posted": "2026-05-01T16:26:36.014Z",
      "author": "Satya Nadella",
      "authorInfo": "Chairman and CEO at Microsoft",
      "authorUrl": "https://www.linkedin.com/in/satyanadella?miniProfileUrn=urn%3Ali%3Afsd_profile%3AACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
      "authorType": "profile",
      "likes": 3502,
      "comments": 163,
      "shares": 547,
      "reactions": null,
      "postImage": null,
      "videoThumbnail": null,
      "videoUrl": null,
      "type": "post",
      "postedAtTimestamp": 1777652796014,
      "articleDetails": {
        "title": "Microsoft Agent 365, now generally available, expands capabilities and integrations | Microsoft Security Blog",
        "subtitle": "microsoft.com",
        "link": "https://www.microsoft.com/en-us/security/blog/2026/05/01/microsoft-agent-365-now-generally-available-expands-capabilities-and-integrations/",
        "linkLabel": "Open article: Microsoft Agent 365, now generally available, expands capabilities and integrations | Microsoft Security Blog by microsoft.com",
        "description": null,
        "image": {
          "url": "https://media.licdn.com/dms/image/sync/v2/D5627AQFKIU7dVMZO5A/articleshare-shrink_1280_800/B56Z3kEMRjIIAg-/0/1777647797779?e=1778425200&v=beta&t=GCGj6ZyYYOSCtjvhVfWrqIgeFf0g9CI3dQ1ApvxqBiQ",
          "width": 1280,
          "height": 720,
          "expiresAt": 1778425200000
        }
      },
      "documentDetails": null,
      "authorHandle": "satyanadella",
      "contentAttributes": [],
      "authorAvatar": "https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1579726625483?e=1779321600&v=beta&t=ZdzsUEqwiaYe6oSSXZfab2tMfJ6kQONtu5QKmUngG5s"
    }
  ]
}
```
