Class: Zernio::AnalyticsApi

Inherits:
Object
  • Object
show all
Defined in:
lib/zernio-sdk/api/analytics_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ AnalyticsApi

Returns a new instance of AnalyticsApi.



19
20
21
# File 'lib/zernio-sdk/api/analytics_api.rb', line 19

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/zernio-sdk/api/analytics_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#get_analytics(opts = {}) ⇒ GetAnalytics200Response

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.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :post_id (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")

  • :profile_id (String)

    Filter by profile ID (default "all")

  • :account_id (String)

    Filter by social account ID

  • :source (String)

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

  • :from_date (Date)

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

  • :to_date (Date)

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

  • :limit (Integer)

    Page size (default 50) (default to 50)

  • :page (Integer)

    Page number (default 1) (default to 1)

  • :sort_by (String)

    Sort by date, engagement, or a specific metric (default to 'date')

  • :order (String)

    Sort order (default to 'desc')

Returns:



37
38
39
40
# File 'lib/zernio-sdk/api/analytics_api.rb', line 37

def get_analytics(opts = {})
  data, _status_code, _headers = get_analytics_with_http_info(opts)
  data
end

#get_analytics_with_http_info(opts = {}) ⇒ Array<(GetAnalytics200Response, Integer, Hash)>

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.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :post_id (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 &quot;all&quot;)

  • :profile_id (String)

    Filter by profile ID (default &quot;all&quot;)

  • :account_id (String)

    Filter by social account ID

  • :source (String)

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

  • :from_date (Date)

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

  • :to_date (Date)

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

  • :limit (Integer)

    Page size (default 50) (default to 50)

  • :page (Integer)

    Page number (default 1) (default to 1)

  • :sort_by (String)

    Sort by date, engagement, or a specific metric (default to 'date')

  • :order (String)

    Sort order (default to 'desc')

Returns:

  • (Array<(GetAnalytics200Response, Integer, Hash)>)

    GetAnalytics200Response data, response status code and response headers



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/zernio-sdk/api/analytics_api.rb', line 57

def get_analytics_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_analytics ...'
  end
  allowable_values = ["all", "late", "external"]
  if @api_client.config.client_side_validation && opts[:'source'] && !allowable_values.include?(opts[:'source'])
    fail ArgumentError, "invalid value for \"source\", must be one of #{allowable_values}"
  end
  if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 100
    fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling AnalyticsApi.get_analytics, must be smaller than or equal to 100.'
  end

  if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1
    fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling AnalyticsApi.get_analytics, must be greater than or equal to 1.'
  end

  if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'] < 1
    fail ArgumentError, 'invalid value for "opts[:"page"]" when calling AnalyticsApi.get_analytics, must be greater than or equal to 1.'
  end

  allowable_values = ["date", "engagement", "impressions", "reach", "likes", "comments", "shares", "saves", "clicks", "views", "follows"]
  if @api_client.config.client_side_validation && opts[:'sort_by'] && !allowable_values.include?(opts[:'sort_by'])
    fail ArgumentError, "invalid value for \"sort_by\", must be one of #{allowable_values}"
  end
  allowable_values = ["asc", "desc"]
  if @api_client.config.client_side_validation && opts[:'order'] && !allowable_values.include?(opts[:'order'])
    fail ArgumentError, "invalid value for \"order\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'postId'] = opts[:'post_id'] if !opts[:'post_id'].nil?
  query_params[:'platform'] = opts[:'platform'] if !opts[:'platform'].nil?
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
  query_params[:'accountId'] = opts[:'account_id'] if !opts[:'account_id'].nil?
  query_params[:'source'] = opts[:'source'] if !opts[:'source'].nil?
  query_params[:'fromDate'] = opts[:'from_date'] if !opts[:'from_date'].nil?
  query_params[:'toDate'] = opts[:'to_date'] if !opts[:'to_date'].nil?
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
  query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
  query_params[:'sortBy'] = opts[:'sort_by'] if !opts[:'sort_by'].nil?
  query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetAnalytics200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_analytics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_analytics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_best_time_to_post(opts = {}) ⇒ GetBestTimeToPost200Response

Get best times to post Returns the best times to post based on historical engagement data. Groups all published posts by day of week and hour (UTC), calculating average engagement per slot. Use this to auto-schedule posts at optimal times. Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID. Omit for all accounts.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

Returns:



144
145
146
147
# File 'lib/zernio-sdk/api/analytics_api.rb', line 144

def get_best_time_to_post(opts = {})
  data, _status_code, _headers = get_best_time_to_post_with_http_info(opts)
  data
end

#get_best_time_to_post_with_http_info(opts = {}) ⇒ Array<(GetBestTimeToPost200Response, Integer, Hash)>

Get best times to post Returns the best times to post based on historical engagement data. Groups all published posts by day of week and hour (UTC), calculating average engagement per slot. Use this to auto-schedule posts at optimal times. Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID. Omit for all accounts.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

Returns:



157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/zernio-sdk/api/analytics_api.rb', line 157

def get_best_time_to_post_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_best_time_to_post ...'
  end
  allowable_values = ["all", "late", "external"]
  if @api_client.config.client_side_validation && opts[:'source'] && !allowable_values.include?(opts[:'source'])
    fail ArgumentError, "invalid value for \"source\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/best-time'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'platform'] = opts[:'platform'] if !opts[:'platform'].nil?
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
  query_params[:'accountId'] = opts[:'account_id'] if !opts[:'account_id'].nil?
  query_params[:'source'] = opts[:'source'] if !opts[:'source'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetBestTimeToPost200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_best_time_to_post",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_best_time_to_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_content_decay(opts = {}) ⇒ GetContentDecay200Response

Get content performance decay Returns how engagement accumulates over time after a post is published. Each bucket shows what percentage of the post's total engagement had been reached by that time window. Useful for understanding content lifespan (e.g. "posts reach 78% of total engagement within 24 hours"). Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID. Omit for all accounts.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

Returns:



217
218
219
220
# File 'lib/zernio-sdk/api/analytics_api.rb', line 217

def get_content_decay(opts = {})
  data, _status_code, _headers = get_content_decay_with_http_info(opts)
  data
end

#get_content_decay_with_http_info(opts = {}) ⇒ Array<(GetContentDecay200Response, Integer, Hash)>

Get content performance decay Returns how engagement accumulates over time after a post is published. Each bucket shows what percentage of the post's total engagement had been reached by that time window. Useful for understanding content lifespan (e.g. &quot;posts reach 78% of total engagement within 24 hours&quot;). Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID. Omit for all accounts.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

Returns:

  • (Array<(GetContentDecay200Response, Integer, Hash)>)

    GetContentDecay200Response data, response status code and response headers



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/zernio-sdk/api/analytics_api.rb', line 230

def get_content_decay_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_content_decay ...'
  end
  allowable_values = ["all", "late", "external"]
  if @api_client.config.client_side_validation && opts[:'source'] && !allowable_values.include?(opts[:'source'])
    fail ArgumentError, "invalid value for \"source\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/content-decay'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'platform'] = opts[:'platform'] if !opts[:'platform'].nil?
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
  query_params[:'accountId'] = opts[:'account_id'] if !opts[:'account_id'].nil?
  query_params[:'source'] = opts[:'source'] if !opts[:'source'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetContentDecay200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_content_decay",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_content_decay\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_daily_metrics(opts = {}) ⇒ GetDailyMetrics200Response

Get daily aggregated metrics Returns daily aggregated analytics metrics and a per-platform breakdown. Each day includes post count, platform distribution, and summed metrics (impressions, reach, likes, comments, shares, saves, clicks, views). Defaults to the last 180 days. Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID

  • :from_date (Time)

    Inclusive start date (ISO 8601). Defaults to 180 days ago.

  • :to_date (Time)

    Inclusive end date (ISO 8601). Defaults to now.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

  • :attribution (String)

    How each post's engagement is attributed to a day. &quot;publish&quot; (default) sums each post's lifetime total on its publish date. &quot;received&quot; buckets the per-day increase in engagement by the day it actually arrived (engagement-over-time), so engagement on older posts appears on the day it was gained rather than the post's publish date. (default to 'publish')

Returns:



293
294
295
296
# File 'lib/zernio-sdk/api/analytics_api.rb', line 293

def get_daily_metrics(opts = {})
  data, _status_code, _headers = get_daily_metrics_with_http_info(opts)
  data
end

#get_daily_metrics_with_http_info(opts = {}) ⇒ Array<(GetDailyMetrics200Response, Integer, Hash)>

Get daily aggregated metrics Returns daily aggregated analytics metrics and a per-platform breakdown. Each day includes post count, platform distribution, and summed metrics (impressions, reach, likes, comments, shares, saves, clicks, views). Defaults to the last 180 days. Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID

  • :from_date (Time)

    Inclusive start date (ISO 8601). Defaults to 180 days ago.

  • :to_date (Time)

    Inclusive end date (ISO 8601). Defaults to now.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

  • :attribution (String)

    How each post's engagement is attributed to a day. &quot;publish&quot; (default) sums each post's lifetime total on its publish date. &quot;received&quot; buckets the per-day increase in engagement by the day it actually arrived (engagement-over-time), so engagement on older posts appears on the day it was gained rather than the post's publish date. (default to 'publish')

Returns:

  • (Array<(GetDailyMetrics200Response, Integer, Hash)>)

    GetDailyMetrics200Response data, response status code and response headers



309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/zernio-sdk/api/analytics_api.rb', line 309

def get_daily_metrics_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_daily_metrics ...'
  end
  allowable_values = ["all", "late", "external"]
  if @api_client.config.client_side_validation && opts[:'source'] && !allowable_values.include?(opts[:'source'])
    fail ArgumentError, "invalid value for \"source\", must be one of #{allowable_values}"
  end
  allowable_values = ["publish", "received"]
  if @api_client.config.client_side_validation && opts[:'attribution'] && !allowable_values.include?(opts[:'attribution'])
    fail ArgumentError, "invalid value for \"attribution\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/daily-metrics'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'platform'] = opts[:'platform'] if !opts[:'platform'].nil?
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
  query_params[:'accountId'] = opts[:'account_id'] if !opts[:'account_id'].nil?
  query_params[:'fromDate'] = opts[:'from_date'] if !opts[:'from_date'].nil?
  query_params[:'toDate'] = opts[:'to_date'] if !opts[:'to_date'].nil?
  query_params[:'source'] = opts[:'source'] if !opts[:'source'].nil?
  query_params[:'attribution'] = opts[:'attribution'] if !opts[:'attribution'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetDailyMetrics200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_daily_metrics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_daily_metrics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_facebook_page_insights(account_id, opts = {}) ⇒ InstagramAccountInsightsResponse

Get Facebook Page insights Returns page-level Facebook insights (media views, views, post engagements, video metrics, follower counts). Response shape matches /v1/analytics/instagram/account-insights so the same client handling works across platforms. Metric names track the current (post-November 2025) Meta Graph API. The legacy page_impressions / page_fans / page_fan_adds / page_fan_removes metrics were deprecated by Meta on November 15, 2025 and are NOT accepted by this endpoint. Use the replacements below. Because Meta did not provide direct adds/removes replacements, Zernio synthesizes followers_gained / followers_lost from the daily follower snapshotter. Max 89 days, defaults to last 30 days. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the connected Facebook Page.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list of metrics. Defaults to &quot;page_media_view,page_post_engagements,page_follows,followers_gained,followers_lost&quot;. Live Meta metrics (current names, post-Nov-2025): - page_media_view (replaces deprecated page_impressions) - page_views_total - page_post_engagements - page_video_views - page_video_view_time - page_follows (replaces deprecated page_fans) Zernio-synthesized from daily follower snapshots (filling the Nov-2025 gap left by the page_fan_adds / page_fan_removes deprecation): - followers_gained - followers_lost

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; (default) returns aggregated totals only. &quot;time_series&quot; returns daily values in the &quot;values&quot; array. (default to 'total_value')

Returns:



377
378
379
380
# File 'lib/zernio-sdk/api/analytics_api.rb', line 377

def get_facebook_page_insights(, opts = {})
  data, _status_code, _headers = get_facebook_page_insights_with_http_info(, opts)
  data
end

#get_facebook_page_insights_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramAccountInsightsResponse, Integer, Hash)>

Get Facebook Page insights Returns page-level Facebook insights (media views, views, post engagements, video metrics, follower counts). Response shape matches /v1/analytics/instagram/account-insights so the same client handling works across platforms. Metric names track the current (post-November 2025) Meta Graph API. The legacy page_impressions / page_fans / page_fan_adds / page_fan_removes metrics were deprecated by Meta on November 15, 2025 and are NOT accepted by this endpoint. Use the replacements below. Because Meta did not provide direct adds/removes replacements, Zernio synthesizes followers_gained / followers_lost from the daily follower snapshotter. Max 89 days, defaults to last 30 days. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the connected Facebook Page.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list of metrics. Defaults to &quot;page_media_view,page_post_engagements,page_follows,followers_gained,followers_lost&quot;. Live Meta metrics (current names, post-Nov-2025): - page_media_view (replaces deprecated page_impressions) - page_views_total - page_post_engagements - page_video_views - page_video_view_time - page_follows (replaces deprecated page_fans) Zernio-synthesized from daily follower snapshots (filling the Nov-2025 gap left by the page_fan_adds / page_fan_removes deprecation): - followers_gained - followers_lost

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; (default) returns aggregated totals only. &quot;time_series&quot; returns daily values in the &quot;values&quot; array. (default to 'total_value')

Returns:



391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
# File 'lib/zernio-sdk/api/analytics_api.rb', line 391

def get_facebook_page_insights_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_facebook_page_insights ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_facebook_page_insights"
  end
  allowable_values = ["time_series", "total_value"]
  if @api_client.config.client_side_validation && opts[:'metric_type'] && !allowable_values.include?(opts[:'metric_type'])
    fail ArgumentError, "invalid value for \"metric_type\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/facebook/page-insights'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'since'] = opts[:'since'] if !opts[:'since'].nil?
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
  query_params[:'metricType'] = opts[:'metric_type'] if !opts[:'metric_type'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramAccountInsightsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_facebook_page_insights",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_facebook_page_insights\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_facebook_post_reactions(account_id, post_id, opts = {}) ⇒ GetFacebookPostReactions200Response

Get Facebook post reactions Returns the reaction breakdown for a Facebook Page post: a count per reaction type plus the overall total. The whole breakdown is fetched in a single Graph call. Note that the post analytics endpoint reports only an aggregate reaction count (surfaced there as likes), so use this endpoint when you need per-type counts.

Parameters:

  • account_id (String)

    The ID of the Facebook Page account

  • post_id (String)

    The Facebook post ID

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



454
455
456
457
# File 'lib/zernio-sdk/api/analytics_api.rb', line 454

def get_facebook_post_reactions(, post_id, opts = {})
  data, _status_code, _headers = get_facebook_post_reactions_with_http_info(, post_id, opts)
  data
end

#get_facebook_post_reactions_with_http_info(account_id, post_id, opts = {}) ⇒ Array<(GetFacebookPostReactions200Response, Integer, Hash)>

Get Facebook post reactions Returns the reaction breakdown for a Facebook Page post: a count per reaction type plus the overall total. The whole breakdown is fetched in a single Graph call. Note that the post analytics endpoint reports only an aggregate reaction count (surfaced there as `likes`), so use this endpoint when you need per-type counts.

Parameters:

  • account_id (String)

    The ID of the Facebook Page account

  • post_id (String)

    The Facebook post ID

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
# File 'lib/zernio-sdk/api/analytics_api.rb', line 465

def get_facebook_post_reactions_with_http_info(, post_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_facebook_post_reactions ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_facebook_post_reactions"
  end
  # verify the required parameter 'post_id' is set
  if @api_client.config.client_side_validation && post_id.nil?
    fail ArgumentError, "Missing the required parameter 'post_id' when calling AnalyticsApi.get_facebook_post_reactions"
  end
  # resource path
  local_var_path = '/v1/accounts/{accountId}/facebook-post-reactions'.sub('{' + 'accountId' + '}', CGI.escape(.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'postId'] = post_id

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetFacebookPostReactions200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_facebook_post_reactions",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_facebook_post_reactions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_follower_stats(opts = {}) ⇒ FollowerStatsResponse

Get follower stats Returns follower count history and growth metrics for connected social accounts. Requires analytics add-on subscription. Follower counts are refreshed once per day.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :account_ids (String)

    Comma-separated list of account IDs (optional, defaults to all user's accounts)

  • :profile_id (String)

    Filter by profile ID

  • :from_date (Date)

    Start date in YYYY-MM-DD format (defaults to 30 days ago)

  • :to_date (Date)

    End date in YYYY-MM-DD format (defaults to today)

  • :granularity (String)

    Data aggregation level (default to 'daily')

Returns:



527
528
529
530
# File 'lib/zernio-sdk/api/analytics_api.rb', line 527

def get_follower_stats(opts = {})
  data, _status_code, _headers = get_follower_stats_with_http_info(opts)
  data
end

#get_follower_stats_with_http_info(opts = {}) ⇒ Array<(FollowerStatsResponse, Integer, Hash)>

Get follower stats Returns follower count history and growth metrics for connected social accounts. Requires analytics add-on subscription. Follower counts are refreshed once per day.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :account_ids (String)

    Comma-separated list of account IDs (optional, defaults to all user's accounts)

  • :profile_id (String)

    Filter by profile ID

  • :from_date (Date)

    Start date in YYYY-MM-DD format (defaults to 30 days ago)

  • :to_date (Date)

    End date in YYYY-MM-DD format (defaults to today)

  • :granularity (String)

    Data aggregation level (default to 'daily')

Returns:

  • (Array<(FollowerStatsResponse, Integer, Hash)>)

    FollowerStatsResponse data, response status code and response headers



541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
# File 'lib/zernio-sdk/api/analytics_api.rb', line 541

def get_follower_stats_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_follower_stats ...'
  end
  allowable_values = ["daily", "weekly", "monthly"]
  if @api_client.config.client_side_validation && opts[:'granularity'] && !allowable_values.include?(opts[:'granularity'])
    fail ArgumentError, "invalid value for \"granularity\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/accounts/follower-stats'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountIds'] = opts[:'account_ids'] if !opts[:'account_ids'].nil?
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
  query_params[:'fromDate'] = opts[:'from_date'] if !opts[:'from_date'].nil?
  query_params[:'toDate'] = opts[:'to_date'] if !opts[:'to_date'].nil?
  query_params[:'granularity'] = opts[:'granularity'] if !opts[:'granularity'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'FollowerStatsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_follower_stats",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_follower_stats\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_google_business_performance(account_id, opts = {}) ⇒ GetGoogleBusinessPerformance200Response

Get GBP performance metrics Returns daily performance metrics for a Google Business Profile location. Metrics include impressions (Maps/Search, desktop/mobile), website clicks, call clicks, direction requests, conversations, bookings, and food orders. Data may be delayed 2-3 days. Max 18 months of historical data. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Google Business Profile account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated metric names. Defaults to all available metrics. Valid values: BUSINESS_IMPRESSIONS_DESKTOP_MAPS, BUSINESS_IMPRESSIONS_DESKTOP_SEARCH, BUSINESS_IMPRESSIONS_MOBILE_MAPS, BUSINESS_IMPRESSIONS_MOBILE_SEARCH, BUSINESS_CONVERSATIONS, BUSINESS_DIRECTION_REQUESTS, CALL_CLICKS, WEBSITE_CLICKS, BUSINESS_BOOKINGS, BUSINESS_FOOD_ORDERS, BUSINESS_FOOD_MENU_CLICKS

  • :start_date (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago. Max 18 months back.

  • :end_date (Date)

    End date (YYYY-MM-DD). Defaults to today.

Returns:



602
603
604
605
# File 'lib/zernio-sdk/api/analytics_api.rb', line 602

def get_google_business_performance(, opts = {})
  data, _status_code, _headers = get_google_business_performance_with_http_info(, opts)
  data
end

#get_google_business_performance_with_http_info(account_id, opts = {}) ⇒ Array<(GetGoogleBusinessPerformance200Response, Integer, Hash)>

Get GBP performance metrics Returns daily performance metrics for a Google Business Profile location. Metrics include impressions (Maps/Search, desktop/mobile), website clicks, call clicks, direction requests, conversations, bookings, and food orders. Data may be delayed 2-3 days. Max 18 months of historical data. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Google Business Profile account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated metric names. Defaults to all available metrics. Valid values: BUSINESS_IMPRESSIONS_DESKTOP_MAPS, BUSINESS_IMPRESSIONS_DESKTOP_SEARCH, BUSINESS_IMPRESSIONS_MOBILE_MAPS, BUSINESS_IMPRESSIONS_MOBILE_SEARCH, BUSINESS_CONVERSATIONS, BUSINESS_DIRECTION_REQUESTS, CALL_CLICKS, WEBSITE_CLICKS, BUSINESS_BOOKINGS, BUSINESS_FOOD_ORDERS, BUSINESS_FOOD_MENU_CLICKS

  • :start_date (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago. Max 18 months back.

  • :end_date (Date)

    End date (YYYY-MM-DD). Defaults to today.

Returns:



615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
# File 'lib/zernio-sdk/api/analytics_api.rb', line 615

def get_google_business_performance_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_google_business_performance ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_google_business_performance"
  end
  # resource path
  local_var_path = '/v1/analytics/googlebusiness/performance'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil?
  query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetGoogleBusinessPerformance200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_google_business_performance",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_google_business_performance\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_google_business_search_keywords(account_id, opts = {}) ⇒ GetGoogleBusinessSearchKeywords200Response

Get GBP search keywords Returns search keywords that triggered impressions for a Google Business Profile location. Data is aggregated monthly. Keywords below a minimum impression threshold set by Google are excluded. Max 18 months of historical data. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Google Business Profile account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :start_month (String)

    Start month (YYYY-MM). Defaults to 3 months ago.

  • :end_month (String)

    End month (YYYY-MM). Defaults to current month.

Returns:



674
675
676
677
# File 'lib/zernio-sdk/api/analytics_api.rb', line 674

def get_google_business_search_keywords(, opts = {})
  data, _status_code, _headers = get_google_business_search_keywords_with_http_info(, opts)
  data
end

#get_google_business_search_keywords_with_http_info(account_id, opts = {}) ⇒ Array<(GetGoogleBusinessSearchKeywords200Response, Integer, Hash)>

Get GBP search keywords Returns search keywords that triggered impressions for a Google Business Profile location. Data is aggregated monthly. Keywords below a minimum impression threshold set by Google are excluded. Max 18 months of historical data. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Google Business Profile account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :start_month (String)

    Start month (YYYY-MM). Defaults to 3 months ago.

  • :end_month (String)

    End month (YYYY-MM). Defaults to current month.

Returns:



686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
# File 'lib/zernio-sdk/api/analytics_api.rb', line 686

def get_google_business_search_keywords_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_google_business_search_keywords ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_google_business_search_keywords"
  end
  pattern = Regexp.new(/^\d{4}-\d{2}$/)
  if @api_client.config.client_side_validation && !opts[:'start_month'].nil? && opts[:'start_month'] !~ pattern
    fail ArgumentError, "invalid value for 'opts[:\"start_month\"]' when calling AnalyticsApi.get_google_business_search_keywords, must conform to the pattern #{pattern}."
  end

  pattern = Regexp.new(/^\d{4}-\d{2}$/)
  if @api_client.config.client_side_validation && !opts[:'end_month'].nil? && opts[:'end_month'] !~ pattern
    fail ArgumentError, "invalid value for 'opts[:\"end_month\"]' when calling AnalyticsApi.get_google_business_search_keywords, must conform to the pattern #{pattern}."
  end

  # resource path
  local_var_path = '/v1/analytics/googlebusiness/search-keywords'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'startMonth'] = opts[:'start_month'] if !opts[:'start_month'].nil?
  query_params[:'endMonth'] = opts[:'end_month'] if !opts[:'end_month'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetGoogleBusinessSearchKeywords200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_google_business_search_keywords",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_google_business_search_keywords\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_instagram_account_insights(account_id, opts = {}) ⇒ InstagramAccountInsightsResponse

Get Instagram insights Returns account-level Instagram insights such as reach, views, accounts engaged, and total interactions. These metrics reflect the entire account's performance across all content surfaces (feed, stories, explore, profile), and are fundamentally different from post-level metrics. Data may be delayed up to 48 hours. Max 90 days, defaults to last 30 days. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Instagram account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list of metrics. Defaults to &quot;reach,views,accounts_engaged,total_interactions&quot;. Valid metrics: reach, views, accounts_engaged, total_interactions, comments, likes, saves, shares, replies, reposts, follows_and_unfollows, profile_links_taps. Note: only &quot;reach&quot; supports metricType=time_series. All other metrics (including follows_and_unfollows) are total_value only. This is an Instagram Graph API limitation, not a Zernio limitation - the IG API does not return time-series data for these metrics. For a daily running follower count, use /v1/analytics/instagram/follower-history instead.

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; (default) returns aggregated totals and supports breakdowns. &quot;time_series&quot; returns daily values but only works with the &quot;reach&quot; metric. (default to 'total_value')

  • :breakdown (String)

    Breakdown dimension (only valid with metricType=total_value). Valid values depend on the metric: media_product_type, follow_type, follower_type, contact_button_type.

Returns:



757
758
759
760
# File 'lib/zernio-sdk/api/analytics_api.rb', line 757

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_instagram_account_insights_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramAccountInsightsResponse, Integer, Hash)>

Get Instagram insights Returns account-level Instagram insights such as reach, views, accounts engaged, and total interactions. These metrics reflect the entire account's performance across all content surfaces (feed, stories, explore, profile), and are fundamentally different from post-level metrics. Data may be delayed up to 48 hours. Max 90 days, defaults to last 30 days. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Instagram account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list of metrics. Defaults to &quot;reach,views,accounts_engaged,total_interactions&quot;. Valid metrics: reach, views, accounts_engaged, total_interactions, comments, likes, saves, shares, replies, reposts, follows_and_unfollows, profile_links_taps. Note: only &quot;reach&quot; supports metricType=time_series. All other metrics (including follows_and_unfollows) are total_value only. This is an Instagram Graph API limitation, not a Zernio limitation - the IG API does not return time-series data for these metrics. For a daily running follower count, use /v1/analytics/instagram/follower-history instead.

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; (default) returns aggregated totals and supports breakdowns. &quot;time_series&quot; returns daily values but only works with the &quot;reach&quot; metric. (default to 'total_value')

  • :breakdown (String)

    Breakdown dimension (only valid with metricType=total_value). Valid values depend on the metric: media_product_type, follow_type, follower_type, contact_button_type.

Returns:



772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
# File 'lib/zernio-sdk/api/analytics_api.rb', line 772

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_instagram_account_insights ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_instagram_account_insights"
  end
  allowable_values = ["time_series", "total_value"]
  if @api_client.config.client_side_validation && opts[:'metric_type'] && !allowable_values.include?(opts[:'metric_type'])
    fail ArgumentError, "invalid value for \"metric_type\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/instagram/account-insights'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'since'] = opts[:'since'] if !opts[:'since'].nil?
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
  query_params[:'metricType'] = opts[:'metric_type'] if !opts[:'metric_type'].nil?
  query_params[:'breakdown'] = opts[:'breakdown'] if !opts[:'breakdown'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramAccountInsightsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_instagram_account_insights",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_instagram_account_insights\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_instagram_demographics(account_id, opts = {}) ⇒ InstagramDemographicsResponse

Get Instagram demographics Returns audience demographic insights for an Instagram account, broken down by age, city, country, and/or gender. Requires at least 100 followers. Returns top 45 entries per dimension. Data may be delayed up to 48 hours. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Instagram account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metric (String)

    &quot;follower_demographics&quot; for follower audience data, or &quot;engaged_audience_demographics&quot; for engaged viewers. (default to 'follower_demographics')

  • :breakdown (String)

    Comma-separated list of demographic dimensions: age, city, country, gender. Defaults to all four if omitted.

  • :timeframe (String)

    Time period for demographic data. Defaults to &quot;this_month&quot;. (default to 'this_month')

Returns:



838
839
840
841
# File 'lib/zernio-sdk/api/analytics_api.rb', line 838

def get_instagram_demographics(, opts = {})
  data, _status_code, _headers = get_instagram_demographics_with_http_info(, opts)
  data
end

#get_instagram_demographics_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramDemographicsResponse, Integer, Hash)>

Get Instagram demographics Returns audience demographic insights for an Instagram account, broken down by age, city, country, and/or gender. Requires at least 100 followers. Returns top 45 entries per dimension. Data may be delayed up to 48 hours. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Instagram account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metric (String)

    &quot;follower_demographics&quot; for follower audience data, or &quot;engaged_audience_demographics&quot; for engaged viewers. (default to 'follower_demographics')

  • :breakdown (String)

    Comma-separated list of demographic dimensions: age, city, country, gender. Defaults to all four if omitted.

  • :timeframe (String)

    Time period for demographic data. Defaults to &quot;this_month&quot;. (default to 'this_month')

Returns:



851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
# File 'lib/zernio-sdk/api/analytics_api.rb', line 851

def get_instagram_demographics_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_instagram_demographics ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_instagram_demographics"
  end
  allowable_values = ["follower_demographics", "engaged_audience_demographics"]
  if @api_client.config.client_side_validation && opts[:'metric'] && !allowable_values.include?(opts[:'metric'])
    fail ArgumentError, "invalid value for \"metric\", must be one of #{allowable_values}"
  end
  allowable_values = ["this_week", "this_month"]
  if @api_client.config.client_side_validation && opts[:'timeframe'] && !allowable_values.include?(opts[:'timeframe'])
    fail ArgumentError, "invalid value for \"timeframe\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/instagram/demographics'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metric'] = opts[:'metric'] if !opts[:'metric'].nil?
  query_params[:'breakdown'] = opts[:'breakdown'] if !opts[:'breakdown'].nil?
  query_params[:'timeframe'] = opts[:'timeframe'] if !opts[:'timeframe'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramDemographicsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_instagram_demographics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_instagram_demographics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_instagram_follower_history(account_id, opts = {}) ⇒ InstagramAccountInsightsResponse

Get Instagram follower history Returns a daily running Instagram follower count time series, served from Zernio's cross-platform daily snapshotter. Exists because Meta removed follower_count from the /insights endpoint in Graph API v22+ and never exposed a historical daily series via any public API. Response envelope matches /v1/analytics/instagram/account-insights so the same client handling works. Max 89 days, defaults to last 30 days. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Instagram account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;follower_count,followers_gained,followers_lost&quot;. - follower_count : per-day raw follower count - followers_gained : sum of positive daily deltas - followers_lost : sum of absolute negative daily deltas

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; returns aggregated totals (latest for follower_count, sum for gained/lost). &quot;time_series&quot; returns per-day values in the &quot;values&quot; array. (default to 'total_value')

Returns:



920
921
922
923
# File 'lib/zernio-sdk/api/analytics_api.rb', line 920

def get_instagram_follower_history(, opts = {})
  data, _status_code, _headers = get_instagram_follower_history_with_http_info(, opts)
  data
end

#get_instagram_follower_history_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramAccountInsightsResponse, Integer, Hash)>

Get Instagram follower history Returns a daily running Instagram follower count time series, served from Zernio's cross-platform daily snapshotter. Exists because Meta removed follower_count from the /insights endpoint in Graph API v22+ and never exposed a historical daily series via any public API. Response envelope matches /v1/analytics/instagram/account-insights so the same client handling works. Max 89 days, defaults to last 30 days. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the Instagram account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;follower_count,followers_gained,followers_lost&quot;. - follower_count : per-day raw follower count - followers_gained : sum of positive daily deltas - followers_lost : sum of absolute negative daily deltas

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; returns aggregated totals (latest for follower_count, sum for gained/lost). &quot;time_series&quot; returns per-day values in the &quot;values&quot; array. (default to 'total_value')

Returns:



934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
# File 'lib/zernio-sdk/api/analytics_api.rb', line 934

def get_instagram_follower_history_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_instagram_follower_history ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_instagram_follower_history"
  end
  allowable_values = ["time_series", "total_value"]
  if @api_client.config.client_side_validation && opts[:'metric_type'] && !allowable_values.include?(opts[:'metric_type'])
    fail ArgumentError, "invalid value for \"metric_type\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/instagram/follower-history'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'since'] = opts[:'since'] if !opts[:'since'].nil?
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
  query_params[:'metricType'] = opts[:'metric_type'] if !opts[:'metric_type'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramAccountInsightsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_instagram_follower_history",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_instagram_follower_history\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_linked_in_aggregate_analytics(account_id, opts = {}) ⇒ GetLinkedInAggregateAnalytics200Response

Get LinkedIn aggregate stats Returns aggregate analytics across all posts for a LinkedIn personal account. Only includes posts published through Zernio (LinkedIn API limitation). Org accounts should use /v1/analytics instead. Requires r_member_postAnalytics scope. Saves (POST_SAVE) and sends (POST_SEND) are available for personal accounts; organization pages always return 0 for these two metrics because LinkedIn does not expose them on the organization analytics endpoint.

Parameters:

  • account_id (String)

    The ID of the LinkedIn personal account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :aggregation (String)

    TOTAL (default, lifetime totals) or DAILY (time series). MEMBERS_REACHED not available with DAILY. (default to 'TOTAL')

  • :start_date (Date)

    Start date (YYYY-MM-DD). If omitted, returns lifetime analytics.

  • :end_date (Date)

    End date (YYYY-MM-DD, exclusive). Defaults to today if omitted.

  • :metrics (String)

    Comma-separated metrics: IMPRESSION, MEMBERS_REACHED, REACTION, COMMENT, RESHARE, POST_SAVE, POST_SEND. Omit for all.

Returns:



1000
1001
1002
1003
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1000

def get_linked_in_aggregate_analytics(, opts = {})
  data, _status_code, _headers = get_linked_in_aggregate_analytics_with_http_info(, opts)
  data
end

#get_linked_in_aggregate_analytics_with_http_info(account_id, opts = {}) ⇒ Array<(GetLinkedInAggregateAnalytics200Response, Integer, Hash)>

Get LinkedIn aggregate stats Returns aggregate analytics across all posts for a LinkedIn personal account. Only includes posts published through Zernio (LinkedIn API limitation). Org accounts should use /v1/analytics instead. Requires r_member_postAnalytics scope. Saves (POST_SAVE) and sends (POST_SEND) are available for personal accounts; organization pages always return 0 for these two metrics because LinkedIn does not expose them on the organization analytics endpoint.

Parameters:

  • account_id (String)

    The ID of the LinkedIn personal account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :aggregation (String)

    TOTAL (default, lifetime totals) or DAILY (time series). MEMBERS_REACHED not available with DAILY. (default to 'TOTAL')

  • :start_date (Date)

    Start date (YYYY-MM-DD). If omitted, returns lifetime analytics.

  • :end_date (Date)

    End date (YYYY-MM-DD, exclusive). Defaults to today if omitted.

  • :metrics (String)

    Comma-separated metrics: IMPRESSION, MEMBERS_REACHED, REACTION, COMMENT, RESHARE, POST_SAVE, POST_SEND. Omit for all.

Returns:



1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1014

def get_linked_in_aggregate_analytics_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_linked_in_aggregate_analytics ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_linked_in_aggregate_analytics"
  end
  allowable_values = ["TOTAL", "DAILY"]
  if @api_client.config.client_side_validation && opts[:'aggregation'] && !allowable_values.include?(opts[:'aggregation'])
    fail ArgumentError, "invalid value for \"aggregation\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/accounts/{accountId}/linkedin-aggregate-analytics'.sub('{' + 'accountId' + '}', CGI.escape(.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'aggregation'] = opts[:'aggregation'] if !opts[:'aggregation'].nil?
  query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil?
  query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil?
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetLinkedInAggregateAnalytics200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_linked_in_aggregate_analytics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_linked_in_aggregate_analytics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_linked_in_org_aggregate_analytics(account_id, opts = {}) ⇒ InstagramAccountInsightsResponse

Get LinkedIn org analytics Returns aggregate analytics for a LinkedIn organization page. Parallel to /v1/accounts/id/linkedin-aggregate-analytics (which handles personal accounts only). Backed by LinkedIn's organizationalEntityShareStatistics, organizationalEntityFollowerStatistics, and organizationPageStatistics endpoints. Response shape matches /v1/analytics/instagram/account-insights. Max 89 days, defaults to last 30 days. Requires the Analytics add-on. Scope requirements: r_organization_social, r_organization_followers, and r_organization_admin must all be present on the account. Accounts connected before these scopes were included in the OAuth flow will return 412 with a reauth hint. Enforced by this endpoint: - Page-view metrics accept only metricType=total_value (LinkedIn omits per-day segmentation even when the API is called with DAY granularity, so a time-series response would be meaningless). - Date range capped at 89 days. LinkedIn-side platform limits (not re-enforced here, but worth knowing for larger ranges in a future release): - Follower stats: rolling 12-month window, end must be no later than 2 days ago. - Share stats: rolling 12-month window.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the LinkedIn organization account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;impressions,clicks,engagement_rate,organic_followers_gained,followers_gained,followers_lost&quot;. Share statistics (support both total_value and time_series): - impressions - unique_impressions - clicks - likes - comments - shares - engagement_rate (0..1, LinkedIn-computed) Follower-gain statistics (support total_value and time_series): - organic_followers_gained (per-day organic gains for time_series; sum of organic gains over the range for total_value) - paid_followers_gained (per-day paid gains for time_series; sum of paid gains over the range for total_value) Page-view statistics (total_value ONLY - LinkedIn platform limit): - page_views_total - page_views_overview - page_views_careers - page_views_jobs - page_views_life Zernio-synthesized from daily follower snapshots: - followers_gained - followers_lost

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String) — default: default to 'total_value'

Returns:



1079
1080
1081
1082
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1079

def get_linked_in_org_aggregate_analytics(, opts = {})
  data, _status_code, _headers = get_linked_in_org_aggregate_analytics_with_http_info(, opts)
  data
end

#get_linked_in_org_aggregate_analytics_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramAccountInsightsResponse, Integer, Hash)>

Get LinkedIn org analytics Returns aggregate analytics for a LinkedIn organization page. Parallel to /v1/accounts/id/linkedin-aggregate-analytics (which handles personal accounts only). Backed by LinkedIn's organizationalEntityShareStatistics, organizationalEntityFollowerStatistics, and organizationPageStatistics endpoints. Response shape matches /v1/analytics/instagram/account-insights. Max 89 days, defaults to last 30 days. Requires the Analytics add-on. Scope requirements: r_organization_social, r_organization_followers, and r_organization_admin must all be present on the account. Accounts connected before these scopes were included in the OAuth flow will return 412 with a reauth hint. Enforced by this endpoint: - Page-view metrics accept only metricType=total_value (LinkedIn omits per-day segmentation even when the API is called with DAY granularity, so a time-series response would be meaningless). - Date range capped at 89 days. LinkedIn-side platform limits (not re-enforced here, but worth knowing for larger ranges in a future release): - Follower stats: rolling 12-month window, end must be no later than 2 days ago. - Share stats: rolling 12-month window.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the LinkedIn organization account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;impressions,clicks,engagement_rate,organic_followers_gained,followers_gained,followers_lost&quot;. Share statistics (support both total_value and time_series): - impressions - unique_impressions - clicks - likes - comments - shares - engagement_rate (0..1, LinkedIn-computed) Follower-gain statistics (support total_value and time_series): - organic_followers_gained (per-day organic gains for time_series; sum of organic gains over the range for total_value) - paid_followers_gained (per-day paid gains for time_series; sum of paid gains over the range for total_value) Page-view statistics (total_value ONLY - LinkedIn platform limit): - page_views_total - page_views_overview - page_views_careers - page_views_jobs - page_views_life Zernio-synthesized from daily follower snapshots: - followers_gained - followers_lost

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String) — default: default to 'total_value'

Returns:



1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1093

def get_linked_in_org_aggregate_analytics_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_linked_in_org_aggregate_analytics ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_linked_in_org_aggregate_analytics"
  end
  allowable_values = ["time_series", "total_value"]
  if @api_client.config.client_side_validation && opts[:'metric_type'] && !allowable_values.include?(opts[:'metric_type'])
    fail ArgumentError, "invalid value for \"metric_type\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/linkedin/org-aggregate-analytics'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'since'] = opts[:'since'] if !opts[:'since'].nil?
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
  query_params[:'metricType'] = opts[:'metric_type'] if !opts[:'metric_type'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramAccountInsightsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_linked_in_org_aggregate_analytics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_linked_in_org_aggregate_analytics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_linked_in_post_analytics(account_id, urn, opts = {}) ⇒ GetLinkedInPostAnalytics200Response

Get LinkedIn post stats Returns analytics for a specific LinkedIn post by URN. Works for both personal and organization accounts. Saves and sends are only populated for personal accounts (LinkedIn does not expose these metrics on the organization analytics endpoint).

Parameters:

  • account_id (String)

    The ID of the LinkedIn account

  • urn (String)

    The LinkedIn post URN

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



1156
1157
1158
1159
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1156

def get_linked_in_post_analytics(, urn, opts = {})
  data, _status_code, _headers = get_linked_in_post_analytics_with_http_info(, urn, opts)
  data
end

#get_linked_in_post_analytics_with_http_info(account_id, urn, opts = {}) ⇒ Array<(GetLinkedInPostAnalytics200Response, Integer, Hash)>

Get LinkedIn post stats Returns analytics for a specific LinkedIn post by URN. Works for both personal and organization accounts. Saves and sends are only populated for personal accounts (LinkedIn does not expose these metrics on the organization analytics endpoint).

Parameters:

  • account_id (String)

    The ID of the LinkedIn account

  • urn (String)

    The LinkedIn post URN

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1167

def get_linked_in_post_analytics_with_http_info(, urn, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_linked_in_post_analytics ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_linked_in_post_analytics"
  end
  # verify the required parameter 'urn' is set
  if @api_client.config.client_side_validation && urn.nil?
    fail ArgumentError, "Missing the required parameter 'urn' when calling AnalyticsApi.get_linked_in_post_analytics"
  end
  # resource path
  local_var_path = '/v1/accounts/{accountId}/linkedin-post-analytics'.sub('{' + 'accountId' + '}', CGI.escape(.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'urn'] = urn

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetLinkedInPostAnalytics200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_linked_in_post_analytics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_linked_in_post_analytics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_linked_in_post_reactions(account_id, urn, opts = {}) ⇒ GetLinkedInPostReactions200Response

Get LinkedIn post reactions Returns individual reactions for a specific LinkedIn post, including reactor profiles (name, headline/job title, profile picture, profile URL, reaction type). Only works for organization/company page accounts. LinkedIn restricts reaction data for personal profiles (r_member_social_feed is a closed permission).

Parameters:

  • account_id (String)

    The ID of the LinkedIn organization account

  • urn (String)

    The LinkedIn post URN

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :limit (Integer)

    Maximum number of reactions to return per page (default to 25)

  • :cursor (String)

    Offset-based pagination start index

Returns:



1228
1229
1230
1231
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1228

def get_linked_in_post_reactions(, urn, opts = {})
  data, _status_code, _headers = get_linked_in_post_reactions_with_http_info(, urn, opts)
  data
end

#get_linked_in_post_reactions_with_http_info(account_id, urn, opts = {}) ⇒ Array<(GetLinkedInPostReactions200Response, Integer, Hash)>

Get LinkedIn post reactions Returns individual reactions for a specific LinkedIn post, including reactor profiles (name, headline/job title, profile picture, profile URL, reaction type). Only works for organization/company page accounts. LinkedIn restricts reaction data for personal profiles (r_member_social_feed is a closed permission).

Parameters:

  • account_id (String)

    The ID of the LinkedIn organization account

  • urn (String)

    The LinkedIn post URN

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :limit (Integer)

    Maximum number of reactions to return per page (default to 25)

  • :cursor (String)

    Offset-based pagination start index

Returns:



1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1241

def get_linked_in_post_reactions_with_http_info(, urn, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_linked_in_post_reactions ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_linked_in_post_reactions"
  end
  # verify the required parameter 'urn' is set
  if @api_client.config.client_side_validation && urn.nil?
    fail ArgumentError, "Missing the required parameter 'urn' when calling AnalyticsApi.get_linked_in_post_reactions"
  end
  if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 100
    fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling AnalyticsApi.get_linked_in_post_reactions, must be smaller than or equal to 100.'
  end

  if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1
    fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling AnalyticsApi.get_linked_in_post_reactions, must be greater than or equal to 1.'
  end

  # resource path
  local_var_path = '/v1/accounts/{accountId}/linkedin-post-reactions'.sub('{' + 'accountId' + '}', CGI.escape(.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'urn'] = urn
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
  query_params[:'cursor'] = opts[:'cursor'] if !opts[:'cursor'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetLinkedInPostReactions200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_linked_in_post_reactions",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_linked_in_post_reactions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_post_timeline(post_id, opts = {}) ⇒ GetPostTimeline200Response

Get post analytics timeline Returns a daily timeline of analytics metrics for a specific post, showing how impressions, likes, and other metrics evolved day-by-day since publishing. Each row represents one day of data per platform. For multi-platform Zernio posts, returns separate rows for each platform. Requires the Analytics add-on.

Parameters:

  • post_id (String)

    The post to fetch timeline for. Accepts an ExternalPost ID, a platformPostId, or a Zernio Post ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :from_date (Time)

    Start of date range (ISO 8601). Defaults to 90 days ago.

  • :to_date (Time)

    End of date range (ISO 8601). Defaults to now.

Returns:



1311
1312
1313
1314
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1311

def get_post_timeline(post_id, opts = {})
  data, _status_code, _headers = get_post_timeline_with_http_info(post_id, opts)
  data
end

#get_post_timeline_with_http_info(post_id, opts = {}) ⇒ Array<(GetPostTimeline200Response, Integer, Hash)>

Get post analytics timeline Returns a daily timeline of analytics metrics for a specific post, showing how impressions, likes, and other metrics evolved day-by-day since publishing. Each row represents one day of data per platform. For multi-platform Zernio posts, returns separate rows for each platform. Requires the Analytics add-on.

Parameters:

  • post_id (String)

    The post to fetch timeline for. Accepts an ExternalPost ID, a platformPostId, or a Zernio Post ID.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :from_date (Time)

    Start of date range (ISO 8601). Defaults to 90 days ago.

  • :to_date (Time)

    End of date range (ISO 8601). Defaults to now.

Returns:

  • (Array<(GetPostTimeline200Response, Integer, Hash)>)

    GetPostTimeline200Response data, response status code and response headers



1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1323

def get_post_timeline_with_http_info(post_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_post_timeline ...'
  end
  # verify the required parameter 'post_id' is set
  if @api_client.config.client_side_validation && post_id.nil?
    fail ArgumentError, "Missing the required parameter 'post_id' when calling AnalyticsApi.get_post_timeline"
  end
  # resource path
  local_var_path = '/v1/analytics/post-timeline'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'postId'] = post_id
  query_params[:'fromDate'] = opts[:'from_date'] if !opts[:'from_date'].nil?
  query_params[:'toDate'] = opts[:'to_date'] if !opts[:'to_date'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetPostTimeline200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_post_timeline",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_post_timeline\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_posting_frequency(opts = {}) ⇒ GetPostingFrequency200Response

Get frequency vs engagement Returns the correlation between posting frequency (posts per week) and engagement rate, broken down by platform. Helps find the optimal posting cadence for each platform. Each row represents a specific (platform, posts_per_week) combination with the average engagement rate observed across all weeks matching that frequency. Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID. Omit for all accounts.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

Returns:



1382
1383
1384
1385
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1382

def get_posting_frequency(opts = {})
  data, _status_code, _headers = get_posting_frequency_with_http_info(opts)
  data
end

#get_posting_frequency_with_http_info(opts = {}) ⇒ Array<(GetPostingFrequency200Response, Integer, Hash)>

Get frequency vs engagement Returns the correlation between posting frequency (posts per week) and engagement rate, broken down by platform. Helps find the optimal posting cadence for each platform. Each row represents a specific (platform, posts_per_week) combination with the average engagement rate observed across all weeks matching that frequency. Requires the Analytics add-on.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :platform (String)

    Filter by platform (e.g. &quot;instagram&quot;, &quot;tiktok&quot;). Omit for all platforms.

  • :profile_id (String)

    Filter by profile ID. Omit for all profiles.

  • :account_id (String)

    Filter by social account ID. Omit for all accounts.

  • :source (String)

    Filter by post origin. &quot;late&quot; for posts published via Zernio, &quot;external&quot; for posts imported from platforms. (default to 'all')

Returns:



1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1395

def get_posting_frequency_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_posting_frequency ...'
  end
  allowable_values = ["all", "late", "external"]
  if @api_client.config.client_side_validation && opts[:'source'] && !allowable_values.include?(opts[:'source'])
    fail ArgumentError, "invalid value for \"source\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/posting-frequency'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'platform'] = opts[:'platform'] if !opts[:'platform'].nil?
  query_params[:'profileId'] = opts[:'profile_id'] if !opts[:'profile_id'].nil?
  query_params[:'accountId'] = opts[:'account_id'] if !opts[:'account_id'].nil?
  query_params[:'source'] = opts[:'source'] if !opts[:'source'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'GetPostingFrequency200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_posting_frequency",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_posting_frequency\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_tik_tok_account_insights(account_id, opts = {}) ⇒ InstagramAccountInsightsResponse

Get TikTok account-level insights Returns account-level TikTok insights from /v2/user/info/ (live) plus historical time series joined from Zernio's daily snapshotter (AccountStats). Response shape matches /v1/analytics/instagram/account-insights. Max 89 days, defaults to last 30 days. Requires the Analytics add-on and the user.info.stats scope on the account (412 if missing). Scope intentionally narrow. TikTok's public API exposes only the four counter metrics below. The deep metrics that live in TikTok Studio are NOT available on any public TikTok API, even for Business accounts: - profile_views - account-level impressions / reach - follower inflow / outflow breakdown - video watch time, average watch time, full-watched rate - impression_sources (FYP / Following / Hashtag / Search / Personal profile) TikTok's Research API doesn't expose those fields either, and is restricted to non-commercial academic use per TikTok's eligibility policy. There is no public API workaround. Post-level metrics (views, likes, comments, shares per video) are available via /v1/analytics?postId=... from TikTok's /v2/video/query/.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the TikTok account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;follower_count,likes_count,video_count,followers_gained,followers_lost&quot;. Live from /v2/user/info/ (requires user.info.stats scope): - follower_count (cumulative; time series joined from AccountStats) - following_count (cumulative; time series joined from AccountStats.metadata) - likes_count (cumulative; time series joined from AccountStats.metadata) - video_count (cumulative; time series joined from AccountStats.metadata) Zernio-synthesized: - followers_gained (sum of positive daily follower deltas) - followers_lost (sum of absolute negative daily deltas)

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; returns the latest cumulative counter value. &quot;time_series&quot; returns daily values joined from AccountStats snapshots. (default to 'total_value')

Returns:



1456
1457
1458
1459
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1456

def (, opts = {})
  data, _status_code, _headers = (, opts)
  data
end

#get_tik_tok_account_insights_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramAccountInsightsResponse, Integer, Hash)>

Get TikTok account-level insights Returns account-level TikTok insights from /v2/user/info/ (live) plus historical time series joined from Zernio's daily snapshotter (AccountStats). Response shape matches /v1/analytics/instagram/account-insights. Max 89 days, defaults to last 30 days. Requires the Analytics add-on and the user.info.stats scope on the account (412 if missing). Scope intentionally narrow. TikTok's public API exposes only the four counter metrics below. The deep metrics that live in TikTok Studio are NOT available on any public TikTok API, even for Business accounts: - profile_views - account-level impressions / reach - follower inflow / outflow breakdown - video watch time, average watch time, full-watched rate - impression_sources (FYP / Following / Hashtag / Search / Personal profile) TikTok's Research API doesn't expose those fields either, and is restricted to non-commercial academic use per TikTok's eligibility policy. There is no public API workaround. Post-level metrics (views, likes, comments, shares per video) are available via /v1/analytics?postId=... from TikTok's /v2/video/query/.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the TikTok account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;follower_count,likes_count,video_count,followers_gained,followers_lost&quot;. Live from /v2/user/info/ (requires user.info.stats scope): - follower_count (cumulative; time series joined from AccountStats) - following_count (cumulative; time series joined from AccountStats.metadata) - likes_count (cumulative; time series joined from AccountStats.metadata) - video_count (cumulative; time series joined from AccountStats.metadata) Zernio-synthesized: - followers_gained (sum of positive daily follower deltas) - followers_lost (sum of absolute negative daily deltas)

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today.

  • :metric_type (String)

    &quot;total_value&quot; returns the latest cumulative counter value. &quot;time_series&quot; returns daily values joined from AccountStats snapshots. (default to 'total_value')

Returns:



1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1470

def (, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_tik_tok_account_insights ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_tik_tok_account_insights"
  end
  allowable_values = ["time_series", "total_value"]
  if @api_client.config.client_side_validation && opts[:'metric_type'] && !allowable_values.include?(opts[:'metric_type'])
    fail ArgumentError, "invalid value for \"metric_type\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/tiktok/account-insights'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'since'] = opts[:'since'] if !opts[:'since'].nil?
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
  query_params[:'metricType'] = opts[:'metric_type'] if !opts[:'metric_type'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramAccountInsightsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_tik_tok_account_insights",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_tik_tok_account_insights\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_you_tube_channel_insights(account_id, opts = {}) ⇒ InstagramAccountInsightsResponse

Get YouTube channel insights Returns channel-scoped aggregate metrics from YouTube Analytics API v2. Saves you from looping /v1/analytics/youtube/daily-views over every video when you only need channel totals. Response shape matches /v1/analytics/instagram/account-insights so the same client handling works. Requires yt-analytics.readonly scope (412 with reauthorizeUrl if missing). Data has a 2-3 day delay (endDate is clamped accordingly). Max 89 days, defaults to last 30 days. Requires the Analytics add-on. NOT exposed: impressions (Studio thumbnail impressions) and impressionsClickThroughRate. YouTube Analytics API v2 does not expose these for any principal type, not channel owners, not Partner Program channels, not content owners with CMS access. The only way to get them is Studio CSV export. This is a Google-side limitation.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the YouTube account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;views,estimatedMinutesWatched,subscribersGained,subscribersLost&quot;. Live YouTube Analytics v2 metrics: - views - estimatedMinutesWatched - averageViewDuration (ratio - weighted mean computed across days) - subscribersGained - subscribersLost Zernio-synthesized from daily follower snapshots (cross-platform parity): - followers_gained - followers_lost

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today. YouTube Analytics has a 2-3 day delay, so the fetch is internally clamped to 3 days ago; any requested range extending beyond that returns zero values for the tail days. The response's dateRange.until field reflects your requested value.

  • :metric_type (String)

    &quot;total_value&quot; (default) returns aggregated totals. &quot;time_series&quot; returns per-day values in the &quot;values&quot; array. (default to 'total_value')

Returns:



1536
1537
1538
1539
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1536

def get_you_tube_channel_insights(, opts = {})
  data, _status_code, _headers = get_you_tube_channel_insights_with_http_info(, opts)
  data
end

#get_you_tube_channel_insights_with_http_info(account_id, opts = {}) ⇒ Array<(InstagramAccountInsightsResponse, Integer, Hash)>

Get YouTube channel insights Returns channel-scoped aggregate metrics from YouTube Analytics API v2. Saves you from looping /v1/analytics/youtube/daily-views over every video when you only need channel totals. Response shape matches /v1/analytics/instagram/account-insights so the same client handling works. Requires yt-analytics.readonly scope (412 with reauthorizeUrl if missing). Data has a 2-3 day delay (endDate is clamped accordingly). Max 89 days, defaults to last 30 days. Requires the Analytics add-on. NOT exposed: impressions (Studio thumbnail impressions) and impressionsClickThroughRate. YouTube Analytics API v2 does not expose these for any principal type, not channel owners, not Partner Program channels, not content owners with CMS access. The only way to get them is Studio CSV export. This is a Google-side limitation.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the YouTube account.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :metrics (String)

    Comma-separated list. Defaults to &quot;views,estimatedMinutesWatched,subscribersGained,subscribersLost&quot;. Live YouTube Analytics v2 metrics: - views - estimatedMinutesWatched - averageViewDuration (ratio - weighted mean computed across days) - subscribersGained - subscribersLost Zernio-synthesized from daily follower snapshots (cross-platform parity): - followers_gained - followers_lost

  • :since (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :_until (Date)

    End date (YYYY-MM-DD). Defaults to today. YouTube Analytics has a 2-3 day delay, so the fetch is internally clamped to 3 days ago; any requested range extending beyond that returns zero values for the tail days. The response's dateRange.until field reflects your requested value.

  • :metric_type (String)

    &quot;total_value&quot; (default) returns aggregated totals. &quot;time_series&quot; returns per-day values in the &quot;values&quot; array. (default to 'total_value')

Returns:



1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1550

def get_you_tube_channel_insights_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_you_tube_channel_insights ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_you_tube_channel_insights"
  end
  allowable_values = ["time_series", "total_value"]
  if @api_client.config.client_side_validation && opts[:'metric_type'] && !allowable_values.include?(opts[:'metric_type'])
    fail ArgumentError, "invalid value for \"metric_type\", must be one of #{allowable_values}"
  end
  # resource path
  local_var_path = '/v1/analytics/youtube/channel-insights'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'metrics'] = opts[:'metrics'] if !opts[:'metrics'].nil?
  query_params[:'since'] = opts[:'since'] if !opts[:'since'].nil?
  query_params[:'until'] = opts[:'_until'] if !opts[:'_until'].nil?
  query_params[:'metricType'] = opts[:'metric_type'] if !opts[:'metric_type'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'InstagramAccountInsightsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_you_tube_channel_insights",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_you_tube_channel_insights\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_you_tube_daily_views(video_id, account_id, opts = {}) ⇒ YouTubeDailyViewsResponse

Get YouTube daily views Returns daily view counts for a YouTube video including views, watch time, and subscriber changes. Requires yt-analytics.readonly scope (re-authorization may be needed). Data has a 2-3 day delay. Max 90 days, defaults to last 30 days.

Parameters:

  • video_id (String)

    The YouTube video ID (e.g., &quot;dQw4w9WgXcQ&quot;)

  • account_id (String)

    The Zernio account ID for the YouTube account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :start_date (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :end_date (Date)

    End date (YYYY-MM-DD). Defaults to 3 days ago (YouTube data latency).

Returns:



1615
1616
1617
1618
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1615

def get_you_tube_daily_views(video_id, , opts = {})
  data, _status_code, _headers = get_you_tube_daily_views_with_http_info(video_id, , opts)
  data
end

#get_you_tube_daily_views_with_http_info(video_id, account_id, opts = {}) ⇒ Array<(YouTubeDailyViewsResponse, Integer, Hash)>

Get YouTube daily views Returns daily view counts for a YouTube video including views, watch time, and subscriber changes. Requires yt-analytics.readonly scope (re-authorization may be needed). Data has a 2-3 day delay. Max 90 days, defaults to last 30 days.

Parameters:

  • video_id (String)

    The YouTube video ID (e.g., &quot;dQw4w9WgXcQ&quot;)

  • account_id (String)

    The Zernio account ID for the YouTube account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :start_date (Date)

    Start date (YYYY-MM-DD). Defaults to 30 days ago.

  • :end_date (Date)

    End date (YYYY-MM-DD). Defaults to 3 days ago (YouTube data latency).

Returns:

  • (Array<(YouTubeDailyViewsResponse, Integer, Hash)>)

    YouTubeDailyViewsResponse data, response status code and response headers



1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1628

def get_you_tube_daily_views_with_http_info(video_id, , opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_you_tube_daily_views ...'
  end
  # verify the required parameter 'video_id' is set
  if @api_client.config.client_side_validation && video_id.nil?
    fail ArgumentError, "Missing the required parameter 'video_id' when calling AnalyticsApi.get_you_tube_daily_views"
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_you_tube_daily_views"
  end
  # resource path
  local_var_path = '/v1/analytics/youtube/daily-views'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'videoId'] = video_id
  query_params[:'accountId'] = 
  query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil?
  query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'YouTubeDailyViewsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_you_tube_daily_views",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_you_tube_daily_views\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_you_tube_demographics(account_id, opts = {}) ⇒ YouTubeDemographicsResponse

Get YouTube demographics Returns audience demographic insights for a YouTube channel, broken down by age, gender, and/or country. Pass videoId to get the audience profile of a single video instead of the whole channel. Age and gender values are viewer percentages (0-100). Country values are view counts. Data is based on signed-in viewers only, with a 2-3 day delay. YouTube suppresses demographics for videos with too few signed-in views, so low-traffic videos can return empty breakdowns. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the YouTube account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :video_id (String)

    YouTube video ID. When provided, demographics are scoped to this single video (must belong to the connected channel; otherwise 404 video_not_found).

  • :breakdown (String)

    Comma-separated list of demographic dimensions: age, gender, country. Defaults to all three if omitted.

  • :start_date (Date)

    Start date in YYYY-MM-DD format. Defaults to 90 days ago, or to the video's publish date (lifetime) when videoId is provided.

  • :end_date (Date)

    End date in YYYY-MM-DD format. Defaults to 3 days ago (YouTube data latency).

Returns:



1693
1694
1695
1696
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1693

def get_you_tube_demographics(, opts = {})
  data, _status_code, _headers = get_you_tube_demographics_with_http_info(, opts)
  data
end

#get_you_tube_demographics_with_http_info(account_id, opts = {}) ⇒ Array<(YouTubeDemographicsResponse, Integer, Hash)>

Get YouTube demographics Returns audience demographic insights for a YouTube channel, broken down by age, gender, and/or country. Pass videoId to get the audience profile of a single video instead of the whole channel. Age and gender values are viewer percentages (0-100). Country values are view counts. Data is based on signed-in viewers only, with a 2-3 day delay. YouTube suppresses demographics for videos with too few signed-in views, so low-traffic videos can return empty breakdowns. Requires the Analytics add-on.

Parameters:

  • account_id (String)

    The Zernio SocialAccount ID for the YouTube account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :video_id (String)

    YouTube video ID. When provided, demographics are scoped to this single video (must belong to the connected channel; otherwise 404 video_not_found).

  • :breakdown (String)

    Comma-separated list of demographic dimensions: age, gender, country. Defaults to all three if omitted.

  • :start_date (Date)

    Start date in YYYY-MM-DD format. Defaults to 90 days ago, or to the video's publish date (lifetime) when videoId is provided.

  • :end_date (Date)

    End date in YYYY-MM-DD format. Defaults to 3 days ago (YouTube data latency).

Returns:

  • (Array<(YouTubeDemographicsResponse, Integer, Hash)>)

    YouTubeDemographicsResponse data, response status code and response headers



1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1707

def get_you_tube_demographics_with_http_info(, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_you_tube_demographics ...'
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_you_tube_demographics"
  end
  # resource path
  local_var_path = '/v1/analytics/youtube/demographics'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'accountId'] = 
  query_params[:'videoId'] = opts[:'video_id'] if !opts[:'video_id'].nil?
  query_params[:'breakdown'] = opts[:'breakdown'] if !opts[:'breakdown'].nil?
  query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil?
  query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'YouTubeDemographicsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_you_tube_demographics",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_you_tube_demographics\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_you_tube_video_retention(video_id, account_id, opts = {}) ⇒ YouTubeVideoRetentionResponse

Get YouTube video retention curve Returns the audience retention curve for a single YouTube video, plus the video's duration for rendering the curve on a time axis. The curve has up to 100 points (elapsedVideoTimeRatio 0.01-1.0) aggregated over the whole date range; YouTube does not support per-day retention breakdowns. audienceWatchRatio is the absolute share of viewers watching at that point in the video and can exceed 1 (rewinds and looping, common on Shorts). relativeRetentionPerformance compares against videos of similar length (0 = worst, 0.5 = median, 1 = best). YouTube returns an empty curve for videos with very few views or before analytics processing completes (2-3 day delay). Requires yt-analytics.readonly scope (re-authorization may be needed).

Parameters:

  • video_id (String)

    The YouTube video ID (e.g., &quot;dQw4w9WgXcQ&quot;)

  • account_id (String)

    The Zernio account ID for the YouTube account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :start_date (Date)

    Start date (YYYY-MM-DD). Defaults to the video's publish date (lifetime curve).

  • :end_date (Date)

    End date (YYYY-MM-DD). Defaults to 3 days ago (YouTube data latency).

Returns:



1768
1769
1770
1771
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1768

def get_you_tube_video_retention(video_id, , opts = {})
  data, _status_code, _headers = get_you_tube_video_retention_with_http_info(video_id, , opts)
  data
end

#get_you_tube_video_retention_with_http_info(video_id, account_id, opts = {}) ⇒ Array<(YouTubeVideoRetentionResponse, Integer, Hash)>

Get YouTube video retention curve Returns the audience retention curve for a single YouTube video, plus the video's duration for rendering the curve on a time axis. The curve has up to 100 points (elapsedVideoTimeRatio 0.01-1.0) aggregated over the whole date range; YouTube does not support per-day retention breakdowns. audienceWatchRatio is the absolute share of viewers watching at that point in the video and can exceed 1 (rewinds and looping, common on Shorts). relativeRetentionPerformance compares against videos of similar length (0 = worst, 0.5 = median, 1 = best). YouTube returns an empty curve for videos with very few views or before analytics processing completes (2-3 day delay). Requires yt-analytics.readonly scope (re-authorization may be needed).

Parameters:

  • video_id (String)

    The YouTube video ID (e.g., &quot;dQw4w9WgXcQ&quot;)

  • account_id (String)

    The Zernio account ID for the YouTube account

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :start_date (Date)

    Start date (YYYY-MM-DD). Defaults to the video's publish date (lifetime curve).

  • :end_date (Date)

    End date (YYYY-MM-DD). Defaults to 3 days ago (YouTube data latency).

Returns:



1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1781

def get_you_tube_video_retention_with_http_info(video_id, , opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.get_you_tube_video_retention ...'
  end
  # verify the required parameter 'video_id' is set
  if @api_client.config.client_side_validation && video_id.nil?
    fail ArgumentError, "Missing the required parameter 'video_id' when calling AnalyticsApi.get_you_tube_video_retention"
  end
  # verify the required parameter 'account_id' is set
  if @api_client.config.client_side_validation && .nil?
    fail ArgumentError, "Missing the required parameter 'account_id' when calling AnalyticsApi.get_you_tube_video_retention"
  end
  # resource path
  local_var_path = '/v1/analytics/youtube/video-retention'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'videoId'] = video_id
  query_params[:'accountId'] = 
  query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil?
  query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'YouTubeVideoRetentionResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.get_you_tube_video_retention",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#get_you_tube_video_retention\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#sync_external_posts(sync_external_posts_request, opts = {}) ⇒ SyncExternalPosts200Response

Sync an external post Fetch an account's latest external posts (published directly on the platform, not through Zernio) on demand, so a just-published post is retrievable within seconds instead of waiting for the background sync (which refreshes each account at most every ~90 minutes). Primary use case: verifying a submitted post. When a user publishes on the platform and immediately pastes the post URL into your app, call this with accountId plus url (or postId) to confirm the post exists and return its metadata. Behavior: - We check our stored copy first and return immediately if the post is already known (no platform call). - Otherwise we fetch the account's latest posts live from the platform, then match and return the submitted post. - Requests are debounced per account (~15s): if the account was just synced, the live fetch is skipped. accountId is required — a post URL or id alone cannot be resolved to an account, and the account must be connected to Zernio (we use its token to read the platform). Supported for every platform with a listing API (Instagram, Facebook, TikTok, YouTube, X, Threads, Pinterest, Reddit, Bluesky, Google Business, and LinkedIn organization accounts; LinkedIn personal accounts are not supported). url accepts any format the platform uses (e.g. instagram.com/p/…, instagram.com/reel/…, youtu.be/…, youtube.com/shorts/…, tiktok.com/@user/video/…, and vm.tiktok.com short links). Pass postId (the platform media/video id) as an alternative locator. Note: post-level analytics (reach, impressions) still carry the platform's own delay (e.g. ~24h on Instagram). This endpoint confirms the post exists and returns its metadata plus basic engagement (likes, comments), not delayed insights.

Parameters:

Returns:



1842
1843
1844
1845
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1842

def sync_external_posts(sync_external_posts_request, opts = {})
  data, _status_code, _headers = sync_external_posts_with_http_info(sync_external_posts_request, opts)
  data
end

#sync_external_posts_with_http_info(sync_external_posts_request, opts = {}) ⇒ Array<(SyncExternalPosts200Response, Integer, Hash)>

Sync an external post Fetch an account's latest external posts (published directly on the platform, not through Zernio) on demand, so a just-published post is retrievable within seconds instead of waiting for the background sync (which refreshes each account at most every ~90 minutes). Primary use case: verifying a submitted post. When a user publishes on the platform and immediately pastes the post URL into your app, call this with `accountId` plus `url` (or `postId`) to confirm the post exists and return its metadata. Behavior: - We check our stored copy first and return immediately if the post is already known (no platform call). - Otherwise we fetch the account's latest posts live from the platform, then match and return the submitted post. - Requests are debounced per account (~15s): if the account was just synced, the live fetch is skipped. `accountId` is required — a post URL or id alone cannot be resolved to an account, and the account must be connected to Zernio (we use its token to read the platform). Supported for every platform with a listing API (Instagram, Facebook, TikTok, YouTube, X, Threads, Pinterest, Reddit, Bluesky, Google Business, and LinkedIn organization accounts; LinkedIn personal accounts are not supported). `url` accepts any format the platform uses (e.g. `instagram.com/p/…`, `instagram.com/reel/…`, `youtu.be/…`, `youtube.com/shorts/…`, `tiktok.com/@user/video/…`, and `vm.tiktok.com` short links). Pass `postId` (the platform media/video id) as an alternative locator. Note: post-level analytics (reach, impressions) still carry the platform's own delay (e.g. ~24h on Instagram). This endpoint confirms the post exists and returns its metadata plus basic engagement (likes, comments), not delayed insights.

Parameters:

Returns:



1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
# File 'lib/zernio-sdk/api/analytics_api.rb', line 1852

def sync_external_posts_with_http_info(sync_external_posts_request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AnalyticsApi.sync_external_posts ...'
  end
  # verify the required parameter 'sync_external_posts_request' is set
  if @api_client.config.client_side_validation && sync_external_posts_request.nil?
    fail ArgumentError, "Missing the required parameter 'sync_external_posts_request' when calling AnalyticsApi.sync_external_posts"
  end
  # resource path
  local_var_path = '/v1/posts/sync-external'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(sync_external_posts_request)

  # return_type
  return_type = opts[:debug_return_type] || 'SyncExternalPosts200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['bearerAuth']

  new_options = opts.merge(
    :operation => :"AnalyticsApi.sync_external_posts",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AnalyticsApi#sync_external_posts\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end