rednote_search_notes
Search Xiaohongshu (Little Red Book) notes, videos, or all content types by keyword, with options to sort results by relevance, popularity, or recency, and set a limit on returned items.
Instructions
搜索小红书笔记
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | 搜索关键词 | |
limit | No | 返回数量限制 | |
sort | No | 排序方式 | relevant |
type | No | 内容类型 | all |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "搜索关键词",
"type": "string"
},
"limit": {
"default": 20,
"description": "返回数量限制",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"sort": {
"default": "relevant",
"description": "排序方式",
"enum": [
"latest",
"popular",
"relevant"
],
"type": "string"
},
"type": {
"default": "all",
"description": "内容类型",
"enum": [
"note",
"video",
"all"
],
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}