Social Media Comments API
Read and reply to comments across Instagram, Facebook, and Threads with one API. Add moderation controls such as hiding or deleting comments where supported, without maintaining separate platform integrations.
- List comments and replies on any post across supported platforms
- Reply to a comment or post a new top-level comment
- Hide or unhide comments to keep spam off your posts
- Delete comments, with no platform developer app on your side
{ "platforms": ["twitter", "linkedin"], "content": "Hello world!" }
"I was up and running on six different platforms in under 30 minutes. Strongly recommend!"
David Flor, Founder at Darklight Interactive
"Couldn't figure out the official Pinterest API. PostPeer was smooth. Using it daily."
Divanshu Khatter, Marketing Manager at Sembark
"Great integration experience. Jonathan ships fixes within hours. Mad respect for the speed."
Het Tikawala, Founder at Kalizzle AI Studio
Add Social Media to Your Product in Three Steps
Connect once, then publish, schedule, and read data through the same API.
01
Get Your API Key
Sign up and get your API key instantly. No sales calls or complicated setup.
02
Integrate in Minutes
Connect once to PostPeer to publish, schedule, analyze, manage comments, and handle messages.
03
Support Every Major Platform
Give your users access to major social platforms without building and maintaining each integration yourself.
New to PostPeer? Read the getting started guide
One Request. Structured Response.
Clean, predictable JSON that's easy to parse and integrate.
curl "https://api.postpeer.dev/v1/comments?platform=instagram&accountId=INTEGRATION_ID&postId=MEDIA_ID&limit=25" \
-H "x-access-key: YOUR_ACCESS_KEY"{
"success": true,
"comments": [
{
"id": "123456789",
"text": "Great post!",
"author": {
"id": "987654321",
"name": "Jane Doe"
},
"timestamp": "2026-07-14T10:00:00.000Z",
"likeCount": 3,
"hidden": false,
"replies": [
{
"id": "111222333",
"text": "Thanks!",
"author": {
"id": "444555666",
"name": "Your Page"
},
"timestamp": "2026-07-14T10:05:00.000Z",
"likeCount": 1
}
]
}
],
"nextCursor": "cursor_abc123"
}Why Choose PostPeer
Build the social experience your users need while PostPeer handles the platform-specific complexity behind it.
One Endpoint, Every Platform
Read and moderate comments on Instagram, Facebook, and Threads through a single `/v1/comments` endpoint. Same request shape everywhere, you just switch the platform value.
List Comments and Replies
Fetch every comment on a post with author, text, timestamp, like count, and its replies. Paginate through long threads with a cursor, normalized across platforms.
Reply and Comment
Post a top-level comment on a post, or reply to an existing comment. Same endpoint, you just switch between a postId and a commentId.
Hide and Unhide
Toggle a comment between hidden and visible to moderate spam without deleting it. Available on the platforms that support it, like Instagram and Facebook.
Delete Comments
Remove a comment from your post when hiding is not enough. One call by comment ID, regardless of which platform the comment lives on.
Works on Existing Posts
Moderate comments on any post on the connected account, not only posts you published through PostPeer. No platform App Review on your side.
Manage Social Media Comments Across Supported Platforms via One API
Read and respond to conversations through one comments API while still getting the moderation controls each supported platform makes available.
Instagram Comments API
List comments and replies, create top-level comments, reply to existing comments, hide or unhide comments, and delete comments on connected Instagram Business accounts.
Explore APIFacebook Comments API
List comments and replies on Facebook Page posts, create comments, reply to existing comments, and delete comments programmatically.
Explore APIThreads Comments API
Read replies on Threads posts, respond to existing replies, and create new top-level Threads posts through the same comments endpoint. Threads does not currently support hiding or deleting replies through this API.
Explore APILinkedIn Comments API
List comments and nested replies on LinkedIn posts, create comments, reply to existing comments, and delete comments as a member or on behalf of a company Page.
Explore APIGo Beyond Publishing. Build the Complete Workflow.
Give your users posting, scheduling, analytics, and messaging through one PostPeer integration.
Posting API
Publish content across supported social platforms through one unified API, with support for text, images, videos, carousels, and platform-specific publishing options.
Explore the Posting APIScheduling API
Schedule, reschedule, or cancel content across supported platforms with precise publishing controls.
Explore the Scheduling APIAnalytics API
Retrieve normalized performance metrics for dashboards, reports, and automated workflows.
Explore the Analytics APIMessaging API
Read and reply to supported customer messages through one connected API.
Explore the Messaging APIOne Integration. Every Way to Build.
Start with REST, use a typed SDK, connect an automation workflow, or hand the job to an agent. The same PostPeer API powers every path.
REST API
One predictable endpoint for every supported platform. Connect accounts once, then publish everywhere.
No-Code Automation
Build social publishing and scheduling workflows without creating a custom backend.
AI Agents & MCP
Give Claude, Cursor, Codex or your own agent access through hosted MCP, Agent Skills or REST tool calling.
const response = await fetch(
'https://api.postpeer.dev/v1/posts',
{
method: 'POST',
headers: {
'x-access-key': process.env.POSTPEER_API_KEY,
'Content-Type': 'application/json',
},
body: JSON.stringify({
content: 'Hello from PostPeer!',
platforms: [
{ platform: 'twitter', accountId: 'acc_twitter' },
{ platform: 'linkedin', accountId: 'acc_linkedin' },
],
publishNow: true,
}),
},
);
const post = await response.json();Frequently Asked Questions
Power Your Next Project With a Unified Social Media API
Give your users posting, scheduling, analytics, and engagement features through one API your team can maintain.
Start with 20 free credits. No credit card required.