Skip to content
Ordinal
Esc
↑↓navigate↵open⌘Jpreview

Get posts leads

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

GET/linkedin/leads/{profileId}/posts/{postId}
Authorization
AuthorizationBearer token · headerrequired

API key authentication. Generate an API key from your workspace settings.

Path parameters
profileIdstring<uuid>required

LinkedIn profile ID (UUID)

postIdstring<uuid>required

LinkedIn post ID (UUID)

Query parameters
typesstring

Filter by engagement types (comma-separated: LIKE,COMMENT,RESHARE)

minFollowerCountinteger

Filter leads by minimum follower count

min 0
limitinteger

Maximum number of leads to return (1-250)

min 1 · max 250 · default: 100
cursorstring

Pagination cursor from previous response

Responses
200

List of leads for the post

leadsLinkedInLead[]
Show properties
Array of LinkedInLead
idstring<uuid>
typestring
Allowed:LIKECOMMENTRESHARE
textstring | null

Comment or reshare text (null for likes)

createdAtstring<date-time>
authorLinkedInLeadAuthor
Show properties
firstNamestring
lastNamestring
vanityNamestring
profileUrlstring<uri>
profileImageUrlstring<uri> | null
headlinestring | null
followerCountinteger
currentJobobject | null
Show properties
titlestring
locationstring | null
organizationNamestring
organizationIndustrystring | null
nextCursorstring | null

Cursor for fetching the next page

hasMoreboolean

Whether more leads are available

401

Unauthorized - Missing or invalid API key

codestring
messagestring
403

Forbidden - Insufficient permissions

codestring
messagestring
404

Not Found - Resource does not exist

codestring
messagestring
Try it
Server
Authorization
Parameters
Request
curl -X GET 'https://app.tryordinal.com/api/v1/linkedin/leads/497f6eca-6276-4993-bfeb-53cbbbba6f08/posts/497f6eca-6276-4993-bfeb-53cbbbba6f08' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
{
  "leads": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "type": "LIKE",
      "text": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "author": {
        "firstName": "string",
        "lastName": "string",
        "vanityName": "string",
        "profileUrl": "http://example.com",
        "profileImageUrl": "http://example.com",
        "headline": "string",
        "followerCount": 0,
        "currentJob": {
          "title": "string",
          "location": "string",
          "organizationName": "string",
          "organizationIndustry": "string"
        }
      }
    }
  ],
  "nextCursor": "string",
  "hasMore": true
}