Platform · Social
People, company pages, posts, post search and the LinkedIn ad library.
- Endpoints
- 10
- Base price
- 2 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/linkedin/profile | Profile | 2 |
| GET /v1/linkedin/posts | Post[] | 2 |
| GET /v1/linkedin/post | Post | 2 |
| GET /v1/linkedin/company | Profile | 2 |
| GET /v1/linkedin/company/posts | Post[] | 2 |
| GET /v1/linkedin/transcript | Transcript | 2 |
| GET /v1/linkedin/search/posts | Post[] | 2 |
| GET /v1/linkedin/ads/search | Ad[] | 2 |
| GET /v1/linkedin/ads | Ad[] | 2 |
| GET /v1/linkedin/ad | Ad | 2 |
Core
Profile
2 creditsGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: 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 creditsList a profile's recent posts.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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 creditsGet a single post by id.
| id | required | The post id on that platform. |
| enrich | optional | arabic: 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 creditsA company page as a profile.
| handle | required | Company slug or page URL. |
| enrich | optional | arabic: 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 creditsA company page's posts.
| handle | required | Company slug or page URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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 creditsPosts matching a keyword.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: 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 creditsThe spoken text of a video, with timings when available.
| id | required | The 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
Search ads
2 creditsAds in the public ad library matching a keyword.
| q | required | What to search for. |
| country | optional | ISO country code. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/linkedin/ads/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=ai agents"An advertiser's ads
2 creditsEvery ad an advertiser is running or ran.
| advertiser | required | Advertiser name, page id or domain. |
| country | optional | ISO country code. |
| cursor | optional | From 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"Ad
2 creditsOne ad from the ad library.
| id | required | Ad id or ad-library URL. |
curl -G https://api.crawlfeed.dev/v1/linkedin/ad \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"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.