get-weread-rank
Retrieve detailed rankings and reading data for trending novels, bestsellers, and new releases from WeChat Read. Filter by categories like rising, hot search, new books, or general novels for tailored insights.
Instructions
获取微信读书排行榜,包含热门小说、畅销书籍、新书推荐及各类文学作品的阅读数据和排名信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | 排行榜分区 | rising |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"anyOf": [
{
"const": "rising",
"description": "飙升榜",
"type": "string"
},
{
"const": "hot_search",
"description": "热搜榜",
"type": "string"
},
{
"const": "newbook",
"description": "新书榜",
"type": "string"
},
{
"const": "general_novel_rising",
"description": "小说榜",
"type": "string"
},
{
"const": "all",
"description": "总榜",
"type": "string"
}
],
"default": "rising",
"description": "排行榜分区"
}
},
"type": "object"
}