# Facebook Profile Reels API (https://www.socialcrawl.dev/platforms/facebook/profile-reels) > Returns Facebook page or profile reels as unified Post items. Each item includes a reel ID, description, thumbnail, duration when available, author identity, `engagement.views` when the upstream provides it, permalink, and publish time. Likes, comments, shares, and saves remain null because this endpoint does not expose those counts. **Two caveats worth knowing before you grade on these numbers:** (1) `engagement.views` here is Facebook's ROUNDED public display value (the "12K" / "2.6M" the page shows, parsed back to a number — e.g. 12000 where the true count is 12366), not an exact count; (2) the upstream carries no per-reel engagement beyond that view count. For EXACT views plus likes, comments, and shares, the easiest path is `GET /v1/facebook/profile/reels/full`, which runs this list and the per-reel lookups server-side and merges the exact engagement in (flat 5 credits per page of 10 reels). Alternatively, take each item's `post.url` and pass it to `/v1/facebook/post` (single) or batch up to 100 of them into `POST /v1/prism/post-stats` (1 credit per successful URL, dead links refunded). TL;DR: `GET /v1/facebook/profile/reels` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the Facebook page or profile | | `next_page_id` | no | To paginate through to the next page | | `cursor` | no | To paginate through to the next page | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/facebook/profile/reels?url=https%3A%2F%2Fwww.facebook.com%2FMeta" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list reels from a Facebook page? Send a GET request to /v1/facebook/profile/reels with the page url. SocialCrawl returns each reel with view count, reaction count, comment count, thumbnail URL, video URL, and publish timestamp. ### Can I download the reel videos? The response includes direct video URLs hosted by Facebook. You can stream them, download them for archival, or pass them into video analysis pipelines. Note that Facebook's video URLs may expire — refresh before long-term use. ### How do I paginate through older reels? Take the cursor or next_page_id from the response and pass it back as cursor on the next request. Walk until cursor is empty. This surfaces the full public reels history in reverse-chronological order. ### Is view count included? Yes. Each reel returns its current view count — the same number shown on Facebook. Great for benchmarking short-form content performance, tracking competitor reach, or building creator analytics dashboards. ### Do I need the new Facebook Graph API v19+? No. SocialCrawl does not require any Graph API version or access token. The endpoint reads publicly available reels data directly — no app review, no OAuth, just your SocialCrawl x-api-key. See the full Facebook API: https://www.socialcrawl.dev/platforms/facebook ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to scrape Facebook reels with an API - Does SocialCrawl return view counts for Facebook reels?