> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thepublive.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Live Blog Updates

> Returns a paginated list of live blog updates for a post.

<Info>Only applies to posts with `type: "LiveBlog"`. For other post types, use Post Details.</Info>



## OpenAPI

````yaml /openapi/content-delivery.json get /publisher/{publisher_id}/post/{post_id}/live-blog-updates/
openapi: 3.1.0
info:
  title: Publive Content Delivery API
  version: 1.0.0
  description: >-
    Read-only API for delivering publisher content, configuration, and static
    assets. All endpoints require HTTP Basic Auth and are GET requests.
servers:
  - url: https://cds.thepublive.com
security:
  - basicAuth: []
tags:
  - name: Site Configuration
  - name: Content
  - name: Posts
  - name: Forms
  - name: Static Files
  - name: Sitemaps
paths:
  /publisher/{publisher_id}/post/{post_id}/live-blog-updates/:
    get:
      tags:
        - Posts
      summary: Live Blog Updates
      description: >-
        Returns a paginated list of live blog updates for a post.


        <Info>Only applies to posts with `type: "LiveBlog"`. For other post
        types, use Post Details.</Info>
      operationId: listLiveBlogUpdatesCDS
      parameters:
        - $ref: '#/components/parameters/PublisherId'
        - name: post_id
          in: path
          required: true
          schema:
            type: integer
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Paginated live blog updates
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  message:
                    type: string
                  page_no:
                    type: integer
                  per_page:
                    type: integer
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        author:
                          type: object
                          properties:
                            id:
                              type: integer
                            name:
                              type: string
                            slug:
                              type: string
                            description:
                              type: string
                            avatar:
                              type: string
                        created_at:
                          type: string
                        updated_at:
                          type: string
                        is_pinned:
                          type: boolean
                        data:
                          type: object
                          properties:
                            title:
                              type: string
                            content:
                              type: string
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Post not found
          content:
            application/json:
              example:
                status: error
                message: Post not found
components:
  parameters:
    PublisherId:
      name: publisher_id
      in: path
      required: true
      schema:
        type: string
      description: Your Publisher ID
    Page:
      name: page
      in: query
      required: false
      schema:
        type: integer
        default: 1
        maximum: 1000
      description: Page number
    Limit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        default: 10
        maximum: 50
      description: Number of results per page
  responses:
    Unauthorized:
      description: Invalid or missing credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorDetail'
          example:
            detail: Invalid Auth Credentials
  schemas:
    ErrorDetail:
      type: object
      properties:
        detail:
          type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using your Publive API key pair, base64-encoded.

````