Version: 202506
List blogs
GET/openapi/2025-06/blogs
Retrieve a list of all blogs with pagination.
Request
Query Parameters
cursor string
Cursor for pagination
page_size int32
Number of blogs to retrieve per page
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
blogs object[]
List of blogs
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
cursorstring
The cursor for the next page of results
has_moreboolean
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"blogs": [
{
"id": "string",
"title": "string",
"handle": "string",
"seo_title": "string",
"seo_description": "string",
"seo_keywords": [
"string"
],
"created_at": "string",
"updated_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}