Skip to main content
GET
/
publisher
/
{publisher_id}
/
post
/
{post_id}
/
live-blog-update
List Live Blog Updates
curl --request GET \
  --url https://cms.thepublive.com/publisher/{publisher_id}/post/{post_id}/live-blog-update/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": 200,
  "data": [
    {
      "id": 90589,
      "published_post": 4477638,
      "author": {
        "name": "PL",
        "slug": "PL",
        "description": "",
        "facebook": "",
        "linkedin": "",
        "instagram": "",
        "twitter": "",
        "avatar": "test_1/media/member_avatars/2025/06/04/avatar.webp"
      },
      "content": {
        "title": "Markets open higher",
        "content": "<p>Sensex opened 300 points higher on Monday.</p>"
      },
      "created_at": "2026-04-21T09:00:00+05:30",
      "updated_at": "2026-04-21T09:00:00+05:30",
      "is_pinned": false
    },
    {
      "id": 90586,
      "published_post": 4477638,
      "author": {
        "name": "PL",
        "slug": "PL",
        "description": "",
        "facebook": "",
        "linkedin": "",
        "instagram": "",
        "twitter": "",
        "avatar": "test_1/media/member_avatars/2025/06/04/avatar.webp"
      },
      "content": {
        "title": "Breaking: RBI holds rates",
        "content": "<p>The Reserve Bank of India kept the repo rate unchanged at 6.5%.</p>"
      },
      "created_at": "2026-04-21T08:30:00+05:30",
      "updated_at": "2026-04-21T08:30:00+05:30",
      "is_pinned": true
    }
  ]
}
Returns a paginated list of all update entries belonging to a LiveBlog post, ordered by creation time descending.
This endpoint only applies to posts with type: "LiveBlog".
publisher_id
string
required
Your Publisher ID
post_id
integer
required
The post ID of the LiveBlog

Example request

curl --request GET \
  --url 'https://cms.thepublive.com/publisher/3466/post/4477638/live-blog-update/' \
  --header 'Authorization: Basic <BASE64_AUTH_TOKEN>'
{
  "status": 200,
  "data": [
    {
      "id": 90589,
      "published_post": 4477638,
      "author": {
        "name": "PL",
        "slug": "PL",
        "description": "",
        "facebook": "",
        "linkedin": "",
        "instagram": "",
        "twitter": "",
        "avatar": "test_1/media/member_avatars/2025/06/04/avatar.webp"
      },
      "content": {
        "title": "Markets open higher",
        "content": "<p>Sensex opened 300 points higher on Monday.</p>"
      },
      "created_at": "2026-04-21T09:00:00+05:30",
      "updated_at": "2026-04-21T09:00:00+05:30",
      "is_pinned": false
    },
    {
      "id": 90586,
      "published_post": 4477638,
      "author": {
        "name": "PL",
        "slug": "PL",
        "description": "",
        "facebook": "",
        "linkedin": "",
        "instagram": "",
        "twitter": "",
        "avatar": "test_1/media/member_avatars/2025/06/04/avatar.webp"
      },
      "content": {
        "title": "Breaking: RBI holds rates",
        "content": "<p>The Reserve Bank of India kept the repo rate unchanged at 6.5%.</p>"
      },
      "created_at": "2026-04-21T08:30:00+05:30",
      "updated_at": "2026-04-21T08:30:00+05:30",
      "is_pinned": true
    }
  ]
}
Last modified on April 21, 2026