Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$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

urls
array
required
List · LinkedIn profile URLs to scrape posts from. One per line.
maxResults
integer
default:50
Number · Posts per profile. Use 0 for all.
postedLimit
string
default:"any"
Dropdown · Only posts within this time window.
any, 1h, 24h, week, month, 3months, 6months, yearLegend: 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 yearView all 8 as a structured list →
includeQuotePosts
boolean
Toggle · Quote posts (shared with commentary).

Response columns

FieldDisplay nameType
sourceProfileCompanyUrlSource Profile/Company URLurl
postUrlPost URLurl
postTextPost Texttext
postedPostedtext
authorAuthortext
authorInfoAuthor Infotext
authorUrlAuthor URLurl
authorTypeAuthor Typetext
likesLikesnumber
commentsCommentsnumber
sharesSharesnumber
reactionsReactionsnumber
postImagePost Imageurl
videoThumbnailVideo Thumbnailurl
videoUrlVideo URLurl
typeTypetext
postedAtTimestampPosted At Timestampinteger
articleDetailsArticle Detailsobject
documentDetailsDocument Detailsobject
authorHandleAuthor Handletext
contentAttributesContent Attributesarray
authorAvatarAuthor Avatarurl

Example

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
  }
}'

Example response

Response
{
  "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"
    }
  ]
}