/api/v1/post/history/version
Returns one specific revision in full, including the HTML content snapshot (body is loaded from blob storage on demand). Use this when an external consumer needs to render a historical version of a post body or compute a diff against another version.
postgetApiV1PostHistoryVersion
Parameters
2 query
Query · 2
apiKeystringRequiredYour BizKitHub API key (passed as GET parameter).
Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more
idstringRequiredVersion handle returned by /api/v1/post/history.
Request
GET /api/v1/post/history/version
curl -X GET "https://api.bizkithub.com/api/v1/post/history/version?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE&id=vErSiOnHaNdLe123" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"id": "example_id",
"postId": "example_postId",
"locale": "example_locale",
"title": "example_title",
"content": "example_content",
"contentSize": 0,
"author": {
"name": "example_name"
}
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.