rednote_get_note
Retrieve detailed note information from Xiaohongshu (Little Red Book) by specifying a note ID. Optionally include comments for comprehensive insights.
Instructions
获取笔记详情
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_comments | No | 是否包含评论 | |
note_id | Yes | 笔记ID |
Input Schema (JSON Schema)
{
"properties": {
"include_comments": {
"default": false,
"description": "是否包含评论",
"type": "boolean"
},
"note_id": {
"description": "笔记ID",
"type": "string"
}
},
"required": [
"note_id"
],
"type": "object"
}