---
title: "List blog articles"
method: GET
path: "/v1/accounts/{accountId}/blogs/{blogId}/articles"
tags: ["Blogs"]
---

# List blog articles

`GET /v1/accounts/{accountId}/blogs/{blogId}/articles`

Lists the articles of a blog. Cursor-paginated: pass `limit` (1-50,
default 20) and the `cursor` from a previous response's `nextCursor`;
`nextCursor` is null when there are no more pages. Treat cursors as
opaque and pass them unchanged. Supported on Shopify (`shopify`) and
WordPress (`wordpress`). WordPress results include native `status` and
include `publishDate` only for scheduled (`future`) posts.

## Path parameters

- `accountId` string, required
- `blogId` string, required

## Query parameters

- `limit` integer
- `cursor` string

## Response `200`

Articles listed

- object
  - `platform` 'shopify' | 'wordpress'
  - `articles` BlogArticle[]
    - `id` string — Platform-native numeric article/post id.
    - `blogId` string — Platform-native id of the blog the article belongs to.
    - `platform` 'shopify' | 'wordpress'
    - `title` string
    - `bodyHtml` string, nullable — Article body as HTML.
    - `handle` string — URL slug of the article.
    - `tags` string[] — Tag names. On WordPress, missing tag names are created and matching is case-insensitive.
    - `author` string, nullable — Shopify author display name, or numeric WordPress user id serialized as a string.
    - `excerpt` string, nullable — Short summary shown in blog listings.
    - `image` object, nullable — Featured image.
      - `url` string
      - `altText` string, nullable
    - `isPublished` boolean — False while the article is a draft or its publish date is still in the future.
    - `publishedAt` string, date-time, nullable — Publication time. On WordPress this is present only when status is `publish`; null for drafts, pending/private posts, and scheduled posts.
    - `status` 'publish' | 'future' | 'draft' | 'pending' | 'private' — WordPress only. Native post status returned by WordPress; omitted for Shopify.
    - `publishDate` string, date-time, nullable — WordPress only. Scheduled publication time in UTC when status is `future`; null for other WordPress statuses and omitted for Shopify.
    - `createdAt` string, date-time, nullable — Creation time when the platform exposes one. WordPress returns null because its core date is the editable publication date.
    - `updatedAt` string, date-time, nullable — Last modification time. WordPress returns modified_gmt as UTC.
  - `nextCursor` string, nullable — Cursor for the next page; null when there are no more pages.

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — The platform rejected the request (code insufficient_permissions); reconnect the account or restore the WordPress user capabilities.
- `404` — Account not found or not accessible (code account_not_found), or blog not found (code blog_not_found).
- `405` — Platform does not support listing articles.
- `429` — Rate limited by Zernio or the connected platform. Retry later.
- `502` — The connected platform returned an unclassified upstream error.

## Changes

- **2026-09-17** `fdaf9a9fb1a7` — 2 warning, 3 info
  - added the new `wordpress` enum value to the `articles/items/platform` response property for the response status `200`
  - added the new `wordpress` enum value to the `platform` response property for the response status `200`
  - added the non-success response with the status `502`
  - added the optional property `articles/items/publishDate` to the response with the `200` status
  - …1 more
- **2026-09-16** `3e6ddf2a99ea` — 1 info
  - added the optional property `details/budgetScope` to the response with the `400` status
- **2026-09-15** `0dba7d004d75` — 2 info
  - added the optional property `details/quotaExhausted` to the response with the `400` status
  - added the optional property `details/quotaScope` to the response with the `400` status
- **2026-08-14** `875093317201` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/zernio/apis/zernio-api/changes/v1/accounts/:accountId/blogs/:blogId/articles/get.md)

---

[API](https://skmtc.dev/zernio/apis/zernio-api.md) · [All operations](https://skmtc.dev/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc.dev/zernio/apis/zernio-api/revisions/fdaf9a9fb1a7?raw)
