One agent for the whole social stack
› claude
Claude Code
MCP client
~/software
Keyword auto-replies that turn Instagram and Facebook comments into DM conversations.
No credit card required
import { Configuration, EngagementApi } from "@onepostly/sdk";
const engagementApi = new EngagementApi(
new Configuration({ apiKey: process.env.ONEPOSTLY_API_KEY }),
);
const { rule } = await engagementApi.createAutomation({
createAutomationBody: {
accountId,
kind: "comment_to_dm",
keywords: ["guide"],
dmMessage: "Just sent the guide to your DMs.",
},
});import os
from onepostly import ApiClient, Configuration
from onepostly.api.engagement_api import EngagementApi
engagement_api = EngagementApi(ApiClient(
Configuration(access_token=os.environ["ONEPOSTLY_API_KEY"])))
response = await engagement_api.create_automation(
create_automation_body={
"accountId": account_id,
"kind": "comment_to_dm",
"keywords": ["guide"],
"dmMessage": "Just sent the guide to your DMs.",
},
)curl -X POST https://api.onepostly.com/v1/automations \ -H "x-api-key: op_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "accountId": "ACCOUNT_ID", "kind": "comment_to_dm", "keywords": ["guide"], "dmMessage": "Just sent the guide to your DMs." }' # { "accountId": "ACCOUNT_ID", "rule": { "id": "…", "kind": "comment_to_dm", "enabled": true } }The boring parts, handled
One integration covers publishing, scheduling, and analytics. Platform changes, app reviews, token refreshes, and rate limits are ours to absorb.
Changelog: faster media uploads
Meet the new analytics view
Planning your calendar, the short version
We are at the API meetup today
Case study: shipping every day
Live demo: retries and webhooks
Uptime report for last month
Pick the time and timezone. Nothing goes out until its scheduled moment, and you can cancel any time before.
Upload images, videos, carousels, Stories, and Reels. One payload, every destination.
Publish, fail, comment, or DM. Every event hits your endpoint the moment it happens.
Add a first comment to the same call. It publishes alongside the post where supported.
One call returns likes, comments, and shares from every platform in the same shape.
Onepostly API
App reviews and OAuth handled
Platform apps and token refresh handled for you
One API key
Connect once and publish everywhere with one key
One shape for every surface
Comments DMs and metrics in normalized JSON
Platform changes absorbed
Endpoint contracts stay stable when APIs shift
Building it yourself (platform APIs)
A separate app per platform
App reviews and OAuth verification take months
A token refresh flow per platform
Rate limits and expiry tracking on your side
A different shape per platform
Inconsistent schemas across social networks
Every breaking change on you
API version bumps and deprecations to track
Same accounts, same API key. Conversations, moderation, automations, and numbers run through the integration you already have.
Launch day is live. Everything shipped from one call.
Keywords, platforms, limits, and how comment-to-DM rules run on inbound webhooks.
You pick a keyword, and whenever someone comments it on your post, they automatically get a DM from you. Set it up once and it runs on its own from then on.
Instagram and Facebook. Those are the networks where private replies to comments are supported.
Connect your account, choose the keyword people should comment, and write the message they will receive. That is the whole setup.
Any comment containing your keyword, regardless of capitalization. You can also add words that disqualify a comment, so priceless never triggers a rule meant for price.
Yes. Besides comments, you can auto-reply to story replies and to people messaging you for the first time, each with its own message.
You can keep up to 20 rules per connected account, and each message can be up to 1000 characters.
Yes. The OAuth screens your users see carry neutral names like Social Media Connector rather than our brand, so the experience reads as fully yours.