{
  "openapi": "3.0.0",
  "info": {
    "title": "Xiaohongshu (RedNote) User Published Notes API (V2)",
    "version": "1.0.0",
    "description": "Get Xiaohongshu (RedNote) user Published Notes data, including note metadata, covers, and publish times, for account monitoring."
  },
  "paths": {
    "/api/xiaohongshu/get-user-note-list/v2": {
      "get": {
        "tags": [
          "Xiaohongshu (RedNote)"
        ],
        "summary": "User Published Notes",
        "description": "Get Xiaohongshu (RedNote) user Published Notes data, including note metadata, covers, and publish times, for account monitoring.",
        "operationId": "getUserNoteListV2",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userId",
            "in": "query",
            "description": "Unique user identifier on Xiaohongshu.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "lastCursor",
            "in": "query",
            "description": "Pagination cursor from the previous page (the last note's cursor value).",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "notes": [],
                    "tags": [],
                    "has_more": false
                  }
                }
              }
            }
          }
        },
        "deprecated": true,
        "x-order": "12001200"
      }
    }
  },
  "components": {}
}