Parameters
1 query
Query parameters
· 1idstringRequiredPost external ID.
Example
aBcDeFgH12345678Returns one row per day for which a snapshot was recorded (rows are only written when the cumulative content__post.views_count actually changed since the previous snapshot, so gaps are legitimate — the value is the same as on the preceding row). Rows are chronological (oldest first) so the admin sidebar chart can plot them without additional sorting.
1 query
idstringRequiredPost external ID.
aBcDeFgH123456781 status code documented
itemsobject[]RequireddatestringRequiredISO calendar day (YYYY-MM-DD) the snapshot was recorded for.
2026-07-26viewCountnumberRequiredCumulative view count as of the snapshot day.
1234{
"items": [
{
"date": "2026-07-26",
"viewCount": 1234
}
]
}GET /bff/post/view-history
curl -X GET "https://api.bizkithub.com/bff/post/view-history?id=aBcDeFgH12345678" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.