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

Supported on Shopify (platform `shopify`). Accounts on platforms
without blogs support return 400; a blogs-capable platform that lacks
this specific operation returns 405.

## Path parameters

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

## Query parameters

- `limit` integer
- `cursor` string

## Response `200`

Articles listed

- object
  - `platform` 'shopify'
  - `articles` BlogArticle[]
    - `id` string — Platform-native article id (numeric string for Shopify).
    - `blogId` string — Platform-native id of the blog the article belongs to.
    - `platform` 'shopify'
    - `title` string
    - `bodyHtml` string, nullable — Article body as HTML.
    - `handle` string — URL slug of the article.
    - `tags` string[]
    - `author` string, nullable — Display name of the article author.
    - `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 — When the article was (or is scheduled to be) published; null for drafts.
    - `createdAt` string, date-time, nullable
    - `updatedAt` string, date-time, nullable
  - `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 Shopify account to restore access.
- `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, either by Zernio or by Shopify. Retry later.

---

[API](https://skmtc.net/zernio/apis/zernio-api.md) · [All operations](https://skmtc.net/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zernio/zernio-api/revisions/19fd2b70854e/schema)
