Skip to main content
GET
/
publisher
/
{publisher_id}
/
post
List Posts
curl --request GET \
  --url https://cms.thepublive.com/publisher/{publisher_id}/post/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "count": 33145,
  "next": "https://cms.thepublive.com/publisher/123/post/?page=2&limit=10",
  "previous": null,
  "results": [
    {
      "id": 50123,
      "title": "Union Budget 2026 Highlights",
      "english_title": "Union Budget 2026 Highlights",
      "slug": "union-budget-2026-highlights",
      "type": "Article",
      "status": "Published",
      "primary_category": {
        "id": 100,
        "name": "Business",
        "slug": "business"
      },
      "contributors": [
        {"id": 1, "name": "Jane Doe"}
      ],
      "tags": [
        {"id": 500, "name": "Budget 2026"}
      ],
      "categories": [
        {"id": 100, "name": "Business"}
      ],
      "banner_url": "https://cdn.publive.com/images/budget.jpg",
      "banner_description": "Budget session",
      "short_description": "Key highlights from the budget",
      "summary": "",
      "content": "<p>Article content...</p>",
      "word_count": 1250,
      "seo_score": 85,
      "hide_banner_image": false,
      "created_at": "2026-02-01T09:00:00Z",
      "updated_at": "2026-02-01T12:30:00Z",
      "source": "HeadlessCMS"
    }
  ]
}
Returns a paginated list of all posts (including drafts, published, and scheduled).
publisher_id
string
required
Your Publisher ID
page
integer
default:"1"
Page number (max: 1000)
limit
integer
default:"10"
Items per page (max: 50)
{
  "count": 33145,
  "next": "https://cms.thepublive.com/publisher/123/post/?page=2&limit=10",
  "previous": null,
  "results": [
    {
      "id": 50123,
      "title": "Union Budget 2026 Highlights",
      "english_title": "Union Budget 2026 Highlights",
      "slug": "union-budget-2026-highlights",
      "type": "Article",
      "status": "Published",
      "primary_category": {
        "id": 100,
        "name": "Business",
        "slug": "business"
      },
      "contributors": [
        {"id": 1, "name": "Jane Doe"}
      ],
      "tags": [
        {"id": 500, "name": "Budget 2026"}
      ],
      "categories": [
        {"id": 100, "name": "Business"}
      ],
      "banner_url": "https://cdn.publive.com/images/budget.jpg",
      "banner_description": "Budget session",
      "short_description": "Key highlights from the budget",
      "summary": "",
      "content": "<p>Article content...</p>",
      "word_count": 1250,
      "seo_score": 85,
      "hide_banner_image": false,
      "created_at": "2026-02-01T09:00:00Z",
      "updated_at": "2026-02-01T12:30:00Z",
      "source": "HeadlessCMS"
    }
  ]
}