API Reference/Endpoints
List a user's posts
GET/api/linkedin/gateway/users/{identifier}/posts
Pages through what a person or a company page has posted publicly — text, engagement counts, and links to reshare or comment on each one.
Authentication
Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401. The account behind account_id must belong to your key.
Path parameters
FieldTypeDescription
identifier *stringThe author's internal id — people's ids start with ACo/ADo, company ids are numeric.
Query parameters
FieldTypeDescription
account_id *stringWhich connected account to read the posts as.
is_companybooleanSet true when identifier refers to a company page instead of a person.
cursorstringThe cursor from a previous response, to continue paging.
limitintegerItems per page, 1–100.
Response fields
FieldTypeDescription
resultobjectitems[], each with id, share_url, text, date, engagement counters (reaction_counter, comment_counter, repost_counter, impressions_counter), an author block, and a permissions block — plus a paging cursor. Reposts, polls, articles and job postings carry extra keys of their own on the same object.
Errors
·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.·404 Not Found. No such person or company.