Zernio
Zernio
API Reference

Posting Analytics

Cross-platform

Get post analyticsGETAnalytics changed since a cursorGETSync an external postPOSTGet post analytics timelineGETGet daily aggregated metricsGETGet best times to postGETGet content performance decayGETGet frequency vs engagementGETGet follower statsGET

Instagram

Get Instagram insightsGETGet Instagram follower historyGETGet Instagram demographicsGET

YouTube

Get YouTube channel insightsGETGet YouTube daily viewsGETGet YouTube video retention curveGETGet YouTube demographicsGET

LinkedIn

Get LinkedIn aggregate statsGETGet LinkedIn org analyticsGETGet LinkedIn post statsGETGet LinkedIn post reactionsGET

Facebook

Get Facebook Page insightsGETGet Facebook post reactionsGETGet Facebook post monetization earningsGET

TikTok

Get TikTok account-level insightsGET

Google Business

Get Google Business Profile performance metricsGETGet Google Business Profile search keywordsGET
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Posting Analytics

Get post analytics

Returns analytics for posts. With postId, returns a single post. Without it, returns a paginated list with overview stats. Accepts both Zernio Post IDs and External Post IDs (auto-resolved). fromDate defaults to 90 days ago if omitted, max range 366 days. Single post lookups may return 202 (sync pending) or 424 (all platforms failed). For follower stats, use /v1/accounts/follower-stats.

LinkedIn personal accounts: Analytics are only available for posts published through Zernio. LinkedIn's API only returns metrics for posts authored by the authenticated user. Organization/company page analytics work for all posts.


GET
/v1/analytics

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Query Parameters

postId?string

Returns analytics for a single post. Accepts both Zernio Post IDs and External Post IDs. Zernio IDs are auto-resolved to External Post analytics.

platform?string

Filter by platform (default "all")

profileId?string

Filter by profile ID (default "all")

accountId?string

Filter by account ID

source?string

Filter by post source: late (posted via Zernio API), external (synced from platform), all (default)

Default"all"

Value in

  • "all"
  • "late"
  • "external"
fromDate?string

Inclusive lower bound (YYYY-MM-DD). Defaults to 90 days ago if omitted. Max range is 366 days.

Formatdate
toDate?string

Inclusive upper bound (YYYY-MM-DD). Defaults to today if omitted.

Formatdate
limit?integer

Page size (default 50)

Range1 <= value <= 100
Default50
page?integer

Page number (default 1)

Range1 <= value
Default1
sortBy?string

Sort by date, engagement, or a specific metric. Platform-specific metrics (follows, reposts, reels_skip_rate, ig_reels_*, completion_rate, profile_views) sort a null value as 0.

Default"date"

Value in

  • "date"
  • "engagement"
  • "impressions"
  • "reach"
  • "likes"
  • "comments"
  • "shares"
  • "saves"
  • "clicks"
  • "views"
  • "follows"
  • "ig_reels_avg_watch_time"
  • "ig_reels_video_view_total_time"
  • "reposts"
  • "reels_skip_rate"
  • "completion_rate"
  • "profile_views"
order?string

Sort order

Default"desc"

Value in

  • "asc"
  • "desc"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

{  "postId": "65f1c0a9e2b5af0012ab34cd",  "latePostId": null,  "status": "published",  "content": "Check out our new product launch!",  "scheduledFor": "2024-11-01T10:00:00Z",  "publishedAt": "2024-11-01T10:00:05Z",  "analytics": {    "impressions": 15420,    "reach": 12350,    "likes": 342,    "comments": 28,    "shares": 45,    "saves": 0,    "clicks": 189,    "views": 0,    "engagementRate": 2.78,    "lastUpdated": "2024-11-02T08:30:00Z"  },  "platformAnalytics": [    {      "platform": "twitter",      "status": "published",      "platformPostId": "123456789",      "accountId": "64e1f0a9e2b5af0012ab34cd",      "accountUsername": "@acmecorp",      "analytics": {        "impressions": 15420,        "reach": 12350,        "likes": 342,        "comments": 28,        "shares": 45,        "saves": 0,        "clicks": 189,        "views": 0,        "engagementRate": 2.78,        "lastUpdated": "2024-11-02T08:30:00Z"      },      "syncStatus": "synced",      "platformPostUrl": "https://twitter.com/acmecorp/status/123456789",      "errorMessage": null    }  ],  "platform": "twitter",  "platformPostUrl": "https://twitter.com/acmecorp/status/123456789",  "isExternal": false,  "syncStatus": "synced",  "message": null,  "thumbnailUrl": "https://storage.example.com/image.jpg",  "mediaType": "image",  "mediaItems": [    {      "type": "image",      "url": "https://storage.example.com/image.jpg",      "thumbnail": "https://storage.example.com/image.jpg"    }  ]}

Was this page helpful?

Delete automation

Permanently delete an automation and all its trigger logs.

Analytics changed since a cursor

Cursor feed of the analytics snapshots that CHANGED, across every account you can read, in one paginated stream. Built for integrations that would otherwise call `GET /v1/analytics` once per connected account. Each page carries changes from many accounts at once, so your call count scales with how much actually changed rather than with how many accounts you have. Measured against a fleet of roughly 1,600 connected accounts: about 1,599 per-account analytics calls an hour became about 205 delta calls an hour, a 7.8x reduction. **Bootstrap once, then stay in sync.** Take the cursor FIRST: call this endpoint with NO `cursor` and it answers with an empty `data` array plus the feed's current position in `nextCursor`. Then load your baseline from `GET /v1/analytics`, the historical endpoint, because this one is a rolling 7-day change log and cannot replay history. Then resume from the cursor you took before the baseline. Taking the cursor afterwards instead drops every change that lands while the baseline is loading: it is in neither the row you already read nor the feed you resume behind it. The overlap this order creates is safe, because metrics are absolute values rather than increments, so draining it leaves every post on its newest value. `nextCursor` is present on every response, empty pages included, so you always have something to advance with. **Ordering.** Entries come back oldest first, in the order the feed received them. That order is NOT `syncedAt`: `syncedAt` is stamped when an account's sync cycle started, and a slow cycle writes its rows after a faster cycle that started later, so `syncedAt` can go backwards between consecutive entries. Do not sort, filter or resume on it. The cursor is the only stable position, and it is opaque: pass it back verbatim, and do not parse, construct or compare cursors. **`hasMore: false` does not mean the feed ended.** This stream has no end and `nextCursor` is never null. `hasMore: true` means more changes are already waiting, so call again straight away. `hasMore: false` means you are caught up: keep the cursor and poll again on your normal interval. **The newest changes settle before they are served.** The feed deliberately holds back its last few seconds of writes, so that a row can never become visible behind a cursor you have already advanced past. A read issued the instant an `analytics.synced` webhook lands will therefore often return an empty page for that account. Do not read an empty page as "nothing changed": poll again with the SAME cursor you last used rather than advancing. **Repeats inside one instant.** A sync cycle occasionally records the same post twice at the same feed position. When that happens the feed delivers one of those rows, not both. Measured over a day of production traffic, about 1.3% of rows fall in such a group and 99.4% of those groups are identical rows, so this is far more often deduplication than loss. Metrics are absolute values rather than increments, so a later entry for the same post supersedes an earlier one. **Retention is 7 days.** Changes older than that leave the feed. A cursor older than 6 days is rejected with a `400` (a day of margin, because expiry is lazy). Recover the same way you bootstrapped: take a fresh cursor from a call to this endpoint with no `cursor`, then re-load from `GET /v1/analytics`, then resume from that cursor. A consumer that polls at least daily never reaches this. Pairs with the `analytics.synced` webhook, so changes can be read on notification instead of on a timer. That event carries no cursor of its own: keep using the `nextCursor` this endpoint gave you. Requires the same analytics access as `GET /v1/analytics`, and shares the stricter per-second rate-limit window applied to analytics endpoints.