---
title: "Get posts leads"
method: GET
path: "/linkedin/leads/{profileId}/posts/{postId}"
tags: ["LinkedIn Leads"]
---

# Get posts leads

`GET /linkedin/leads/{profileId}/posts/{postId}`

Returns leads (reactions, comments, reshares) for a specific LinkedIn post. Supports filtering by engagement type and minimum follower count.

## Path parameters

- `profileId` string, uuid, required
- `postId` string, uuid, required

## Query parameters

- `types` string
- `minFollowerCount` integer
- `limit` integer
- `cursor` string

## Response `200`

List of leads for the post

- object
  - `leads` LinkedInLead[]
    - `id` string, uuid
    - `type` 'LIKE' | 'COMMENT' | 'RESHARE'
    - `text` string, nullable — Comment or reshare text (null for likes)
    - `createdAt` string, date-time
    - `author` LinkedInLeadAuthor
      - `firstName` string
      - `lastName` string
      - `vanityName` string
      - `profileUrl` string, uri
      - `profileImageUrl` string, uri, nullable
      - `headline` string, nullable
      - `followerCount` integer
      - `currentJob` object, nullable
        - `title` string
        - `organizationName` string
        - `organizationIndustry` string, nullable
  - `nextCursor` string, nullable — Cursor for fetching the next page
  - `hasMore` boolean — Whether more leads are available

## Other responses

- `401` — Unauthorized - Missing or invalid API key
- `403` — Forbidden - Insufficient permissions
- `404` — Not Found - Resource does not exist

---

[API](https://skmtc.net/tryordinal/apis/ordinal-agency-api.md) · [All operations](https://skmtc.net/tryordinal/apis/ordinal-agency-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryordinal/ordinal-agency-api/versions/f0063bbd9805/schema)
