Version: 202601
Get blog
GET/openapi/2026-01/blogs/:id
Retrieve details of a specific blog using its unique identifier.
Request
Path Parameters
id stringrequired
Blog ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
blog object
Blog
idstring
Blog ID
titlestring
Title of the blog
handlestring
SEO URL
seo_titlestring
SEO title
seo_descriptionstring
SEO description
seo_keywordsstring[]
SEO keywords
created_atstring
Created time
updated_atstring
Updated time
article_countint32
Number of articles under this blog
{
"code": "string",
"message": "string",
"data": {
"blog": {
"id": "string",
"title": "string",
"handle": "string",
"seo_title": "string",
"seo_description": "string",
"seo_keywords": [
"string"
],
"created_at": "string",
"updated_at": "string",
"article_count": 0
}
}
}