/api/v1/post/last-update

Returns the timestamp of the most recently published post for the organisation identified by the API key. Use this endpoint to quickly check whether any content has changed since your last sync (e.g. for cache invalidation or incremental updates).

The result is based on the publishedDate of posts that are already visible (publishedDate < NOW() on the server). If no post is found, the current server time is returned.

get
Tags:post
Operation ID: getApiV1PostLast-update
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

localestring
optional

Communication locale code used to filter content.

Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.

Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/post/last-update?apiKey=YOUR_API_KEY', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json'
  }
})

Example Response

HTTP 200Success Response
{
  "date": "2025-11-25 14:11:59"
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: January 2, 2026