Facebook
Extract profiles, posts, comments, group posts, photos, reels, and ad library data
Extract profiles, posts, comments, group posts, photos, reels, and ad library data. 12 endpoints available.
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://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://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.
What Facebook data can I access?
| Endpoint | Path | Credit Tier |
|---|---|---|
| Get Facebook page profile | /v1/facebook/profile | standard (1cr) |
| List Facebook page posts | /v1/facebook/profile/posts | standard (1cr) |
| Get Facebook post details | /v1/facebook/post | standard (1cr) |
| List Facebook post comments | /v1/facebook/post/comments | standard (1cr) |
| List Facebook group posts | /v1/facebook/group/posts | standard (1cr) |
| Get Facebook video transcript | /v1/facebook/post/transcript | premium (10cr) |
| List Facebook profile photos | /v1/facebook/profile/photos | 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) |
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
