Building a unified dataset
Pipe the GET response straight into BigQuery, Postgres, Airtable, or a Google Sheet via n8n / Make / Zapier. The response is structured JSON โ no HTML parsing, no headless browser, no upstream OAuth.
Fetch replies to a specific comment on a Facebook post. Requires comment_feedback_id and expansion_token from the Facebook Post Comments endpoint with include_reply_info=true.
Edit parameters and send a live request from your browser
The Facebook Post Comment Replies API fetches replies to a specific comment on a Facebook post. Requires comment_feedback_id and expansion_token, which are returned by the Facebook Post Comments endpoint when include_reply_info is set to true.
1{
2 "comment_feedback_id": "ZmVlZGJhY2s6MTA4MjAwODAxMDE1Njg1NF84MzI4OTYyMjg5NjAwNzU=",
3 "expansion_token": "MjoxNzczNTczMDExOgF_TFQFOvqXt0sH7qLCg19ICxHcXr5Gp9fiBwBFl2h7vir..."
4}1{
2 "data": {
3 "comment_id": "Y29tbWVudDoxMDgyMDA4MDEwMTU2ODU0XzgzMjg5NjIyODk2MDA3NQ==",
4 "comment_replies": [
5 {
6 "comment_id": "Y29tbWVudDoxMDgyMDA4MDEwMTU2ODU0Xzg0NjA1OTk0ODQwNjMxNTM=",
7 "legacy_fbid": "8460599484063153",
8 "comment_text": "Christina Bowman agree. I can walk anywhere pretty much unbothered and not scared!",
9 "depth": 1,
10 "author": {
11 "name": "Adria Waldbart Garrett",
12 "id": "pfbid0wEf5hPDDrMtzVArWnHpZzz...",
13 "profile_picture": "https://scontent-iad3-1.xx.fbcdn.net/...",
14 "gender": "FEMALE",
15 "is_verified": false,
16 "short_name": "Adria"
17 },
18 "feedback": {
19 "reaction_count": "13",
20 "replies_count": 0,
21 "total_replies_count": 0,
22 "top_reactions": [
23 {
24 "reaction_id": "1635855486666999",
25 "reaction_count": 13
26 }
27 ]
28 },
29 "comment_direct_parent": {
30 "author_name": "Christina Bowman",
31 "author_id": "pfbid02C8qUPrnkChYR8puEr...",
32 "parent_comment_id": "Y29tbWVudDoxMDgyMDA4MDEwMTU2ODU0XzgzMjg5NjIyODk2MDA3NQ=="
33 },
34 "created_time": 1726794818,
35 "mentioned_users": [],
36 "attachments": []
37 }
38 ],
39 "page_info": {
40 "end_cursor": null,
41 "has_next": false
42 }
43 }
44}Use this API to retrieve threaded conversations under Facebook post comments. Ideal for deep engagement analysis, community monitoring, and conversation tracking.
The Facebook Post Comment Replies endpoint is part of SocialAPIs' unified REST API for public social-media data. Fetch replies to a specific comment on a Facebook post. Requires comment_feedback_id and expansion_token from the Facebook Post Comments endpoint with include_reply_info=true. It belongs to the Posts category and follows the same auth, pagination, and error-handling conventions as every other endpoint on the platform โ so any code you write for one transfers cleanly to the others.
The Facebook Post Comment Replies endpoint is most often combined with other SocialAPIs endpoints to power the workflows below. Each one is achievable on the Free tier for evaluation; scale up to Pro or Ultra when you move to production.
Pipe the GET response straight into BigQuery, Postgres, Airtable, or a Google Sheet via n8n / Make / Zapier. The response is structured JSON โ no HTML parsing, no headless browser, no upstream OAuth.
The same endpoint is exposed as a tool in the SocialAPIs MCP server, so Claude Desktop / ChatGPT custom integrations / Cursor / any MCP-aware client can call it directly inside a chat. No glue code, no separate auth โ the user's API token does both.
Schedule a recurring call (cron, GitHub Actions, n8n schedule), diff the latest response against the previous run, and notify Slack / email / Telegram when a meaningful change appears. The response shape is stable across calls so diffs stay reliable.
If you're building a feature on top of public social data (lead enrichment, brand monitoring, competitive intelligence, resale arbitrage), this endpoint usually replaces a brittle in-house scraper that broke every time Facebook tweaked its HTML. Same dataset, real-time, with an SLA.
All SocialAPIs endpoints take your API token in the x-api-token header. Grab yours from your dashboard (or create a free account at /auth/signup โ 200 free calls per month, no credit card).
curl -X GET "https://api.socialapis.io/facebook/posts/comments/replies?comment_feedback_id=ZmVlZGJhY2s6MTA4MjAwODAxMDE1Njg1NF84MzI4OTYyMjg5NjAwNzU%3D&expansion_token=MjoxNzczNTczMDExOgF_TFQFOvqXt0sH7qLCg19ICxHcXr5Gp9fiBwBFl2h7virFBtDZyxwBeabb6hP2PekMb1e95W8_1xr-RaymN0qdTNphwmG2ioNNYMA4M6hbVpQCyr73wwmY0rmufIXyG1TzOJv2mKEWiX4DOeaWwqctwU6W8d2iLVMmYVkZkTM_txkIkW9TsslVdoqHArFxcSBhlaajjviLSn9Uo-AM7oQRy1zQomBooXfCO-n0ca0hh6DcMzO3K8_uTW7TASZEZpzXQWyPv7psY3B3GqYfJO2CHPyr6MyG_3PXiN_9cPKTbBTBSdqR0IIozwKHNK3iWEkSrAPGzMTw62gZJBSb1sANGtLCXeQtZPd0Mqi9TKg5mDddWrXuUaKhTmdSjfJoNZnL-m0ueeEVCYtXn7E6cCXd_LKaSoXiMeOBYjgGqUMA_uEF3wu3eXPWlq6RuxE8JyIHLZK1abJu_J1aHaXTTJV2thUO2ftKQlpzUcYRf8EnbiCnUFB57ZYY6GxUYzwZ8BBxAwWXMcvU4LxWTFHKdHP7higDmWQBf3N39nObsckS-p46RMUWTUUE3DwI4hn8eN2k" \
-H "x-api-token: YOUR_API_TOKEN" \
-H "Content-Type: application/json"The response is JSON containing the requested data plus a request_id (echo it back in any support email โ it lets us pull the matching row from our request log in seconds). Detailed parameter schemas and copy-paste snippets in JavaScript, Python, PHP, Java, and Go are available in the playground above.
List-style endpoints return a next_cursor in the response. Pass it back in the next request to walk the full result set. Cursors are stable across calls โ safe to persist if you need to resume later.
10 req/min on the Free tier, 100 req/min on Pro / Ultra / Mega, higher dedicated limits on custom plans. Limit hits return HTTP 429 with a Retry-After header โ respect it and you'll never see a sustained block.
4xx = your request (bad params, missing auth, hit limit). 5xx = our side (transient โ retry with backoff). Every error response includes error_code, message, and a request_id for support.
These endpoints share the same data model and auth as Facebook Post Comment Replies. Most real-world integrations combine 2-3 of them.
Facebook Post ID
Extract the post ID from a Facebook post link.
Facebook Post Details
Retrieve full details of a Facebook post including reactions, media type, and publishing info.
Facebook Post Details (Extended)
Retrieve extended details of a Facebook post including views, video URLs, music info, and author verification status.
Facebook Post Comments
Fetch comments from a Facebook post or reel, with pagination support via end_cursor.
Facebook Post Attachment Details
Retrieve all media attachments (photos, videos) from a Facebook post by post_id.
Facebook Video Post Details
Fetch title, reaction stats, and play counts of a Facebook video post using video ID.
No. SocialAPIs handles the upstream auth and infrastructure on our side. You just send a bearer token (your SocialAPIs API token) and call the endpoint. No Facebook app review, no OAuth scope dance, no expiring user access tokens. This is the primary reason most teams move off the Graph API to us.
One credit per successful response. The exact cost is shown in the dashboard under "Usage" after every call. Failed requests (4xx errors caused by bad input) do not consume credits.
Real-time. Each call fetches from the upstream source at the moment you call us โ we don't cache responses between users. The exception is the Ads Library endpoints, which return Meta's own snapshots and therefore lag by 24-48 hours because Meta itself indexes them on that cadence (not us).
Yes. The SocialAPIs MCP server exposes every endpoint as an MCP tool, so any MCP-aware client (Claude Desktop, the ChatGPT Custom Integrations beta, Cursor, Cline) can call it directly inside a chat. The MCP server uses the same API token as direct HTTP calls, so your credit balance, rate limits, and usage history are unified across surfaces.
Every response โ success or error โ includes a request_id in both the body and the x-request-id header. Email it to support and we can pull the full request log (params, upstream response, timing, error trace) within minutes. We retain the log for 30 days on standard plans and indefinitely on enterprise. Don't ship a workaround for an edge case without checking with us first โ it's usually a two-line server fix.
Some fields Meta's official Graph API used to return are no longer publicly accessible (page email, exact follower counts on small pages, post audience targeting). Where we can derive them from other public signals, we do; where we can't, the field will be absent from the response (we don't fabricate values). The full list of "what's still returnable in 2026" lives in the docs โ start there before assuming a field is broken on our side.
Use the playground at the top of this page to send a live request against your account โ or grab the curl above and run it from your terminal. Free accounts get 200 calls per month, enough to integrate, prototype, and ship a working demo before deciding whether to upgrade.
Create a free API key ย ยทย See pricing ย ยทย Browse all endpoints