Skip to main content
GET
/
api
/
integrations
/
{integration_id}
/
posts
/
{external_post_id}
/
stats
Get external post stats
curl --request GET \
  --url https://api.mymarky.ai/api/integrations/{integration_id}/posts/{external_post_id}/stats \
  --header 'Authorization: Bearer <token>'
{
  "fetched_at": "2023-11-07T05:31:56Z",
  "likes": 123,
  "comment_count": 123,
  "impressions": 123,
  "shares": 123,
  "reach": 123,
  "saves": 123,
  "clicks": 123,
  "views": 123,
  "video_duration_ms": 123,
  "avg_watch_time_ms": 123,
  "total_watch_time_ms": 123,
  "completion_rate": 123,
  "video_views_organic": 123,
  "video_views_paid": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mymarky.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

integration_id
string
required
external_post_id
string
required

Query Parameters

metrics
string | null

Comma-separated metric names. Omit for defaults.

Response

Successful Response

Statistics for a single post.

fetched_at
string<date-time>
likes
integer | null
comment_count
integer | null
impressions
integer | null
shares
integer | null
reach
integer | null
saves
integer | null
clicks
integer | null
views
integer | null
video_duration_ms
integer | null
avg_watch_time_ms
integer | null
total_watch_time_ms
integer | null
completion_rate
number | null
video_views_organic
integer | null
video_views_paid
integer | null