# Facebook Post Comments API (https://www.socialcrawl.dev/platforms/facebook/post-comments) > Returns a list of comments on a specific Facebook post. Each comment includes the author name, comment text, like count, reply count, and creation timestamp. TL;DR: `GET /v1/facebook/post/comments` 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` | no | Full URL of the Facebook post to fetch comments for | | `feedback_id` | no | Using feedback_id (instead of url) will *really* speed up the request. You can get the feedback_id when you make a request to /v1/facebook/post. | | `cursor` | no | Cursor to get more comments. Get 'cursor' from previous response. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/facebook/post/comments" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get comments from a Facebook post? Send a GET request to /v1/facebook/post/comments with either the post url or a feedback_id. SocialCrawl returns a comment array with author name, comment text, like count, reply count, and creation timestamp. ### What is feedback_id and why should I use it? feedback_id is Facebook's internal identifier for a post's comment thread. Calling /v1/facebook/post/comments with feedback_id is significantly faster than url. You get feedback_id from the /v1/facebook/post response. ### How many comments can I paginate through? Use the cursor parameter to walk through the full comment list. Each response includes a cursor for the next page — keep calling until the cursor is empty. SocialCrawl handles the pagination tokens for you. ### Are comment replies included? The endpoint returns top-level comments with a reply count for each. Nested reply threads are not expanded inline — use the reply count to decide which threads are worth a separate request for deeper analysis. ### Can I use this endpoint for sentiment analysis? Yes. Each comment comes with its raw text, author, and like count — feed it directly into an LLM or classifier. Combine with /v1/facebook/post for reactions breakdown and full post context. 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 post comments with an API - How does SocialCrawl use feedback_id for faster Facebook comment fetching?