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

# Get a blog article

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

Fetches a single article. An article addressed through a blog it does
not belong to is a 404 (code blog_article_not_found).

Supported on Shopify (`shopify`) and WordPress (`wordpress`). WordPress
returns its native `status`; `publishedAt` is present only for a
published post and `publishDate` only for a scheduled post.

## Path parameters

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

## Response `200`

Article fetched

- object
  - `platform` 'shopify' | 'wordpress'
  - `article` BlogArticle — An article inside a blog on the connected platform.
    - `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.

## 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), blog not found (code blog_not_found), or article not found (code blog_article_not_found).
- `405` — Platform does not support fetching an article.
- `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 `article/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 `article/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/:articleId/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/a0d8f21b5abe?raw)
