Version: 202601
List blogs
GET/openapi/2026-01/blogs
Retrieve a list of all blogs with pagination.
Request
Query Parameters
cursor string
Cursor for pagination
page_size int32
Page size, default 10
keyword string
Optional keyword to fuzzy-match blog title
page int32
Page number (1-based). Mutually exclusive with cursor
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
Created time
updated_atstring
Updated time
article_countint32
Number of articles under this blog
cursorstring
Cursor for the next page
has_moreboolean
Whether there are more records
countint32
Total number of blogs (from the backend)
{
"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",
"article_count": 0
}
],
"cursor": "string",
"has_more": true,
"count": 0
}
}