Version: 202607
Get article
GET/openapi/2026-07/articles/:id
Look up an article by its ID.
Request
Path Parameters
id stringrequired
Article ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
article object
Article
idstring
Article ID
titlestring
Title of the article
excerptstring
Short summary or preview of the article content
contentstring
Full content of the article
image object
Image associated with the article containing src, width, height, and alt
srcstring
Image URL
widthint32
Width
heightint32
Height
pathstring
Path
publishedboolean
Whether the article is published or not
handlestring
URL-friendly identifier for the article
seo_titlestring
Custom SEO title
seo_descriptionstring
SEO meta description
seo_keywordsstring[]
SEO keywords
authorstring
Author of the article
published_atstring
ISO 8601 timestamp when article was published
blog_idsstring[]
Array of blog IDs this article belongs to
created_atstring
ISO 8601 timestamp when article was created
updated_atstring
ISO 8601 timestamp when article was last updated
{
"code": "string",
"message": "string",
"data": {
"article": {
"id": "string",
"title": "string",
"excerpt": "string",
"content": "string",
"image": {
"src": "string",
"width": 0,
"height": 0,
"path": "string"
},
"published": true,
"handle": "string",
"seo_title": "string",
"seo_description": "string",
"seo_keywords": [
"string"
],
"author": "string",
"published_at": "string",
"blog_ids": [
"string"
],
"created_at": "string",
"updated_at": "string"
}
}
}