rednote_get_user_notes
Retrieve user notes from Xiaohongshu (Little Red Book) by specifying a user ID, with options for pagination and result limits to streamline data extraction.
Instructions
获取用户笔记
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | 分页游标 | |
limit | No | 数量限制 | |
user_id | Yes | 用户ID |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "分页游标",
"type": "string"
},
"limit": {
"default": 20,
"description": "数量限制",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"user_id": {
"description": "用户ID",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}