One agent for the whole social stack
› claude
Claude Code
MCP client
~/software
One analytics endpoint for likes, impressions, reach, shares, and engagement across platforms. Build dashboards and reports without stitching vendor APIs.
No credit card required
import { Configuration, AnalyticsApi } from "@onepostly/sdk";
const analyticsApi = new AnalyticsApi(
new Configuration({ apiKey: process.env.ONEPOSTLY_API_KEY }),
);
const { analytics } = await analyticsApi.getAnalytics({ post: postId });
console.log(analytics.subjects);
// → [{ platform: "x", metrics: { likes: 342, impressions: 12450 } }]import os
from onepostly import ApiClient, Configuration
from onepostly.api.analytics_api import AnalyticsApi
analytics_api = AnalyticsApi(ApiClient(
Configuration(access_token=os.environ["ONEPOSTLY_API_KEY"])))
response = await analytics_api.get_analytics(post=post_id)
print(response.analytics.subjects)
# → [{"platform": "x", "metrics": {"likes": 342, "impressions": 12450}}]curl "https://api.onepostly.com/v1/analytics?post=POST_ID" \ -H "x-api-key: op_YOUR_KEY" # {# "analytics": {# "post": "POST_ID",# "subjects": [# { "platform": "x", "metrics": { "likes": 342, "impressions": 12450 } }# ]# }# }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.
Metrics, subject filters, and how to pull normalized analytics into dashboards and reports.
It is a programmatic way to pull engagement metrics such as likes, impressions, reach, shares, and saves. Onepostly returns a normalized shape across supported platforms from one analytics endpoint.
Normalized fields include likes, comments, shares, saves, impressions, reach, plays, and engagement when the platform exposes them. Missing values stay null instead of fake zeros.
Call GET /v1/analytics with your x-api-key and the post id. Optionally pass accountId or destinationId to scope the response to a single connected account.
One Onepostly post can target multiple destinations. Without accountId you get metrics for every destination on that post. With accountId or destinationId you filter to one network or account.
Yes. Analytics are part of the API for every connected account, with nothing extra to unlock. Some X analytics reads debit the prepaid wallet at X list prices.
Yes. The analytics response is JSON-ready for custom dashboards, client reports, and automation. Use webhooks or polling only if you need status beyond a single pull.
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.