Version: 202506
Get blog
GET/openapi/2025-06/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
Timestamp when blog was created
updated_atstring
Timestamp when blog was updated
{
"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"
}
}
}