Platform · Social

Facebook

Pages, posts, reels, groups, events, Marketplace and the Meta ad library.

Endpoints
20
Base price
1 cr
Source
Provider

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/facebook/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: 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 credit

List a profile's recent posts.

GET/v1/facebook/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/facebook/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=nike"

Post

1 credit

Get a single post by id.

GET/v1/facebook/postPost
idrequiredThe post id on that platform.
enrichoptionalarabic: 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>"

Comments

1 credit

List comments on a post.

GET/v1/facebook/commentsComment[]
post_idrequiredThe post to read comments from.
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/facebook/comments \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "post_id=<post_id>"

Profiles and people

Linked profiles

10 credits

The same creator's accounts on other platforms, matched through their public links.

GET/v1/facebook/linked-profilesLinkedProfile[]
handlerequiredUsername without the @.
cursoroptionalFrom 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 credit

A profile's short-form videos: reels, shorts.

GET/v1/facebook/reelsPost[]
handlerequiredUsername without the @, or the profile 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/facebook/reels \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=nike"

Photos

1 credit

A page's photos.

GET/v1/facebook/photosPost[]
handlerequiredUsername without the @, or the profile 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/facebook/photos \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=nike"

Transcripts and media

Transcript

1 credit

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

GET/v1/facebook/transcriptTranscript
idrequiredThe 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 credit

A community (subreddit, group) as a profile.

GET/v1/facebook/communityProfile
idrequiredCommunity name or URL.
enrichoptionalarabic: 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 credit

Posts in a community, or a channel’s community tab.

GET/v1/facebook/community/postsPost[]
idrequiredCommunity name or URL, or a YouTube channel handle.
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/facebook/community/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Shops and marketplaces

Marketplace item

1 credit

One marketplace listing.

GET/v1/facebook/marketplace/itemProduct
idrequiredListing id or URL.
curl -G https://api.crawlfeed.dev/v1/facebook/marketplace/item \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Ad libraries

An advertiser's ads

1 credit

Every ad an advertiser is running or ran.

GET/v1/facebook/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/facebook/ads \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "advertiser=nike.com"

Ad transcript

1 credit

The spoken text of a video ad.

GET/v1/facebook/ad/transcriptTranscript
idrequiredAd id or ad-library URL.
curl -G https://api.crawlfeed.dev/v1/facebook/ad/transcript \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Events

Events

1 credit

A page's upcoming and past events, or a streamer's schedule.

GET/v1/facebook/eventsEvent[]
handlerequiredUsername without the @, or the profile URL.
cursoroptionalFrom 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"

Event

1 credit

One event.

GET/v1/facebook/eventEvent
idrequiredEvent 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.