Pages, posts, reels, groups, events, Marketplace and the Meta ad library.
- Endpoints
- 20
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/facebook/profile | Profile | 1 |
| GET /v1/facebook/posts | Post[] | 1 |
| GET /v1/facebook/post | Post | 1 |
| GET /v1/facebook/comments | Comment[] | 1 |
| GET /v1/facebook/linked-profiles | LinkedProfile[] | 10 |
| GET /v1/facebook/reels | Post[] | 1 |
| GET /v1/facebook/photos | Post[] | 1 |
| GET /v1/facebook/transcript | Transcript | 1 |
| GET /v1/facebook/community | Profile | 1 |
| GET /v1/facebook/community/posts | Post[] | 1 |
| GET /v1/facebook/marketplace/search | Product[] | 1 |
| GET /v1/facebook/marketplace/item | Product | 1 |
| GET /v1/facebook/ads/search | Ad[] | 1 |
| GET /v1/facebook/ads | Ad[] | 1 |
| GET /v1/facebook/ad | Ad | 1 |
| GET /v1/facebook/ad/transcript | Transcript | 1 |
| GET /v1/facebook/advertisers/search | Advertiser[] | 1 |
| GET /v1/facebook/events | Event[] | 1 |
| GET /v1/facebook/events/search | Event[] | 1 |
| GET /v1/facebook/event | Event | 1 |
Core
Profile
1 creditGet 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/facebook/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nike"Posts
1 creditList 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/facebook/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nike"Post
1 creditGet 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/facebook/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Profiles and people
Linked profiles
10 creditsThe same creator's accounts on other platforms, matched through their public links.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/facebook/linked-profiles \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nike"Posts and feeds
Reels and shorts
1 creditA profile's short-form videos: reels, shorts.
| handle | required | Username without the @, or the profile 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/facebook/reels \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nike"Photos
1 creditA page's photos.
| handle | required | Username without the @, or the profile 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/facebook/photos \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nike"Transcripts and media
Transcript
1 creditThe 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/facebook/transcript \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Communities
Community
1 creditA community (subreddit, group) as a profile.
| id | required | Community name or URL. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/facebook/community \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Community posts
1 creditPosts in a community, or a channel’s community tab.
| id | required | Community name or URL, or a YouTube channel handle. |
| 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/facebook/community/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Shops and marketplaces
Marketplace search
1 creditMarketplace listings near a location.
| q | required | What to search for. |
| lat | required | Latitude. |
| lng | required | Longitude. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/facebook/marketplace/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee" \
--data-urlencode "lat=40.7128" \
--data-urlencode "lng=-74.006"Marketplace item
1 creditOne marketplace listing.
| id | required | Listing id or URL. |
curl -G https://api.crawlfeed.dev/v1/facebook/marketplace/item \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Ad libraries
Search ads
1 creditAds 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/facebook/ads/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"An advertiser's ads
1 creditEvery 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/facebook/ads \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "advertiser=nike.com"Ad
1 creditOne ad from the ad library.
| id | required | Ad id or ad-library URL. |
curl -G https://api.crawlfeed.dev/v1/facebook/ad \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Ad transcript
1 creditThe spoken text of a video ad.
| id | required | Ad id or ad-library URL. |
curl -G https://api.crawlfeed.dev/v1/facebook/ad/transcript \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Search advertisers
1 creditFind an advertiser, and the id its ads are filed under.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/facebook/advertisers/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"Events
Events
1 creditA page's upcoming and past events, or a streamer's schedule.
| handle | required | Username without the @, or the profile URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/facebook/events \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=nike"Search events
1 creditPublic events matching a keyword.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
curl -G https://api.crawlfeed.dev/v1/facebook/events/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=coffee"Event
1 creditOne event.
| id | required | Event id or URL. |
curl -G https://api.crawlfeed.dev/v1/facebook/event \
-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.
Comments
1 creditList comments on a post.