Extract profiles, posts, comments, group posts, photos, reels, and ad library data
Extract profiles, posts, comments, group posts, photos, reels, and ad library data.
Facebook is the world's largest social network with over 3 billion monthly active users.
Base URL: /v1/facebook/...
How do I get started with Facebook data?
1. Fetch a profile
curl "https://www.socialcrawl.dev/v1/facebook/profile?url=https://www.facebook.com/Meta" \
-H "x-api-key: sc_your_api_key_here"2. Fetch their content
curl "https://www.socialcrawl.dev/v1/facebook/profile/posts?url=https://www.facebook.com/Meta" \
-H "x-api-key: sc_your_api_key_here"3. Read computed fields
Every response includes computed fields: engagement_rate, language, content_category, and estimated_reach. See Computed fields for formulas, clamping rules, and null semantics.
What Facebook data can I access?
์๋ํฌ์ธํธ 22๊ฐ๋ฅผ ์ ๊ณตํด์.
| ์๋ํฌ์ธํธ | ๊ฒฝ๋ก | ํฌ๋ ๋ง ๋ฑ๊ธ |
|---|---|---|
| Get details for a Facebook event | /v1/facebook/event/details | standard (1cr) |
| List Facebook events for a city | /v1/facebook/events | standard (1cr) |
| Search Facebook events by keyword | /v1/facebook/events/search | standard (1cr) |
| List Facebook group posts | /v1/facebook/group/posts | standard (1cr) |
| Get a Facebook Marketplace item | /v1/facebook/marketplace/item | standard (1cr) |
| Search Facebook Marketplace locations | /v1/facebook/marketplace/location/search | standard (1cr) |
| Search Facebook Marketplace listings | /v1/facebook/marketplace/search | standard (1cr) |
| Get Facebook post details | /v1/facebook/post | standard (1cr) |
| List replies to a Facebook post comment | /v1/facebook/post/comment/replies | standard (1cr) |
| List Facebook post comments | /v1/facebook/post/comments | standard (1cr) |
| Get Facebook page profile | /v1/facebook/profile | standard (1cr) |
| List a Facebook page's events | /v1/facebook/profile/events | standard (1cr) |
| Facebook profile, recent posts, and computed analytics in one call. | /v1/facebook/profile/full | standard (5cr) |
| List Facebook profile photos | /v1/facebook/profile/photos | standard (1cr) |
| List Facebook page posts | /v1/facebook/profile/posts | standard (1cr) |
| List Facebook profile reels | /v1/facebook/profile/reels | standard (1cr) |
| Get Facebook Ad Library ad details | /v1/facebook/adlibrary/ad | advanced (5cr) |
| List Facebook Ad Library company ads | /v1/facebook/adlibrary/company/ads | advanced (5cr) |
| Search Facebook Ad Library | /v1/facebook/adlibrary/search/ads | advanced (5cr) |
| Search Facebook Ad Library companies | /v1/facebook/adlibrary/search/companies | advanced (5cr) |
| Get a Facebook Ad Library video ad transcript | /v1/facebook/adlibrary/ad/transcript | premium (10cr) |
| Get Facebook video transcript | /v1/facebook/post/transcript | premium (10cr) |
What should I know about Facebook data?
- All endpoints use
GETmethod with query parameters - Authentication via
x-api-keyheader - Responses follow the unified SocialCrawl schema
Official Facebook Resources
- Facebook Graph API โ Official Meta developer documentation
- Meta for Developers โ Meta developer platform
