Skip to main content
GET https://cds.thepublive.com/publisher/{publisher_id}/post/{post_id}/live-blog-updates/ Returns the list of live blog updates for a specific LiveBlog post. Each update contains its own title, content, author, and timestamp.
This endpoint only returns data for posts with type: "LiveBlog". For other post types, use the Post Details endpoint.

Path Parameters

NameTypeDescription
post_idintegerThe post ID of the LiveBlog

Headers

NameTypeRequiredDescription
usernamestringYesAPI Key
passwordstringYesAPI Secret

Query Parameters

NameTypeDefaultDescription
pageinteger1Page number
limitinteger10Items per page (max: 50)

Response Fields

Each live blog update contains:
FieldTypeDescription
idintegerUnique update identifier
authorobjectAuthor details (id, name, slug, description, social links, avatar)
created_atdatetimeWhen the update was created
updated_atdatetimeWhen the update was last modified
is_pinnedbooleanWhether this update is pinned to the top
data.titlestringUpdate title/headline
data.contentstringUpdate body (HTML)
{
  "status": "ok",
  "data": [
    {
      "id": 1001,
      "author": {
        "id": 1,
        "name": "Jane Doe",
        "slug": "jane-doe",
        "description": "Senior correspondent",
        "avatar": "https://cdn.publive.com/avatars/jane-doe.jpg"
      },
      "created_at": "2026-02-01T14:30:00Z",
      "updated_at": "2026-02-01T14:30:00Z",
      "is_pinned": true,
      "data": {
        "title": "Breaking: Key announcement on tax reforms",
        "content": "<p>The Finance Minister has just announced significant changes to the income tax slabs...</p>"
      }
    },
    {
      "id": 1000,
      "author": {
        "id": 2,
        "name": "John Smith",
        "slug": "john-smith",
        "description": "Economy reporter",
        "avatar": null
      },
      "created_at": "2026-02-01T14:00:00Z",
      "updated_at": "2026-02-01T14:00:00Z",
      "is_pinned": false,
      "data": {
        "title": "Budget session begins",
        "content": "<p>The budget session has officially commenced in Parliament...</p>"
      }
    }
  ],
  "message": "",
  "page_no": 1,
  "per_page": 10
}