> ## 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.

# List Posts



## OpenAPI

````yaml /openapi/content-management.json get /publisher/{publisher_id}/post/
openapi: 3.1.0
info:
  title: Publive Content Management API
  version: 1.0.0
  description: >-
    Read/write API for managing publisher content: categories, tags, posts, live
    blogs, media, custom content types, custom components, forms, reader
    accounts, and newsletter subscriptions.
servers:
  - url: https://cms.thepublive.com
security:
  - basicAuth: []
tags:
  - name: Categories
  - name: Tags
  - name: Posts
  - name: Live Blogs
  - name: Media Library
  - name: Custom Content Types
  - name: Custom Components
  - name: Forms
  - name: Reader
  - name: Newsletter
paths:
  /publisher/{publisher_id}/post/:
    get:
      tags:
        - Posts
      summary: List Posts
      operationId: listPosts
      parameters:
        - $ref: '#/components/parameters/PublisherId'
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Paginated post list
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                      - string
                      - 'null'
                  previous:
                    type:
                      - string
                      - 'null'
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Post'
        '401':
          $ref: '#/components/responses/Unauthorized'
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
    Limit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        default: 10
        maximum: 50
  schemas:
    Post:
      type: object
      properties:
        id:
          type: integer
        title:
          type: string
        english_title:
          type: string
        slug:
          type: string
        type:
          type: string
          enum:
            - Article
            - Video
            - Web Story
            - Gallery
            - LiveBlog
            - CustomPage
            - BlankPage
        status:
          type: string
          enum:
            - Draft
            - Published
            - Scheduled
            - Approval Pending
        primary_category:
          type: integer
        contributors:
          type: string
          description: Comma-separated author IDs
        content:
          type: string
        tags:
          type: string
          description: Comma-separated tag IDs
        categories:
          type: string
          description: Comma-separated category IDs
        banner_url:
          type: integer
          description: Media ID
        banner_description:
          type: string
        short_description:
          type: string
        summary:
          type: string
        seo_keyphrase:
          type: string
        meta_data:
          type: object
        custom_published_at:
          type: string
        scheduled_at:
          type: string
          description: Requires status=Scheduled
        hide_banner_image:
          type: boolean
        word_count:
          type: integer
          readOnly: true
        seo_score:
          type: number
          readOnly: true
        source:
          type: string
          readOnly: true
    ErrorDetail:
      type: object
      properties:
        detail:
          type: string
  responses:
    Unauthorized:
      description: Invalid or missing credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorDetail'
          example:
            detail: Invalid Auth Credentials
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using your Publive API key pair, base64-encoded.

````