Social Fetch
LinkedIn

List LinkedIn company posts

Lists posts for a LinkedIn company page. Pass the public company page URL and optional `page` (1–7). Check `data.lookupStatus` for `found` vs `not_found`. Pagination is page-based; `data.page.hasMore` indicates whether another page can be requested.

Operation

GET/v1/linkedin/companies/posts

Headers

x-api-keystringrequired(header)

API key (`sfk_...`)

Parameters

urlstringrequired(query)

Public LinkedIn company page URL for the organization whose posts should be listed.

min 1 chars · max 4096 chars

pageinteger(query)

1-based results page number. Pagination is page-based; at most 7 pages can be requested for a given company.

≥ 1 · ≤ 7

Response fields

data
objectrequired

Endpoint-specific response payload.

datalookupStatus
stringrequired

Whether the company page resolved for this request.

one of: found, not_found

dataposts
arrayrequired

Posts returned for the requested company page. This array may be empty when the page resolves but no posts are returned.

dataposts[]id
stringrequired

Stable activity identifier for the post.

min 1 chars

dataposts[]url
stringrequired

Canonical public URL for this LinkedIn post.

min 1 chars

dataposts[]text
stringrequirednullable

Full text body of the post when available.

dataposts[]publishedAt
stringrequirednullable

ISO-8601 timestamp for when the post was published, when available.

datapage
objectrequired

Pagination information for the current response.

datapagecurrentPage
integerrequired

1-based page number for this response.

≥ 1 · ≤ 7

datapagenextPage
integerrequirednullable

Next page number to request when `hasMore` is true; otherwise null.

≥ 1 · ≤ 7

datapagehasMore
booleanrequired

Whether another page of posts can be requested.

datapagemaxPage
numberrequired

Maximum page number that can be requested for this listing.

one of: 7

meta
objectrequired

Metadata describing the request and billing outcome.

metarequestId
stringrequired

Unique request identifier for tracing this API call.

min 1 chars

metacreditsCharged
integerrequired

Credits charged for this request.

≥ 0

metaversion
stringrequired

Public API version that served the response.

one of: v1

Code example

Responses

Company posts for the requested page. Check `data.lookupStatus` for `found` vs `not_found`.

Error codes

bad_requestinsufficient_creditsinternal_errorlookup_failedtemporarily_unavailableunauthorized

On this page