Platform · Social

LinkedIn

People, company pages, posts, post search and the LinkedIn ad library.

Endpoints
10
Base price
2 cr
Source
Provider

Core

Profile

2 credits

Get a public profile by handle.

GET/v1/linkedin/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/linkedin/profile \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=satyanadella"

Posts

2 credits

List a profile's recent posts.

GET/v1/linkedin/postsPost[]
handlerequiredUsername without the @.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/linkedin/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=satyanadella"

Post

2 credits

Get a single post by id.

GET/v1/linkedin/postPost
idrequiredThe post id on that platform.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/linkedin/post \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Profiles and people

Company

2 credits

A company page as a profile.

GET/v1/linkedin/companyProfile
handlerequiredCompany slug or page URL.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/linkedin/company \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=satyanadella"

Posts and feeds

Company posts

2 credits

A company page's posts.

GET/v1/linkedin/company/postsPost[]
handlerequiredCompany slug or page URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/linkedin/company/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=satyanadella"

Search

Search posts

2 credits

Posts matching a keyword.

GET/v1/linkedin/search/postsPost[]
qrequiredWhat to search for.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/linkedin/search/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "q=ai agents"

Transcripts and media

Transcript

2 credits

The spoken text of a video, with timings when available.

GET/v1/linkedin/transcriptTranscript
idrequiredThe video or post id, or its URL.
curl -G https://api.crawlfeed.dev/v1/linkedin/transcript \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Ad libraries

An advertiser's ads

2 credits

Every ad an advertiser is running or ran.

GET/v1/linkedin/adsAd[]
advertiserrequiredAdvertiser name, page id or domain.
countryoptionalISO country code.
cursoroptionalFrom meta.next_cursor, to get the next page.
curl -G https://api.crawlfeed.dev/v1/linkedin/ads \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "advertiser=nike.com"

Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.