{
  "openapi": "3.0.0",
  "info": {
    "title": "Xiaohongshu (RedNote) Note Search API (V3)",
    "version": "1.0.0",
    "description": "Get Xiaohongshu (RedNote) note Search data, including snippets, authors, and media, for topic discovery."
  },
  "paths": {
    "/api/xiaohongshu/search-note/v3": {
      "get": {
        "tags": [
          "Xiaohongshu (RedNote)"
        ],
        "summary": "Note Search",
        "description": "Get Xiaohongshu (RedNote) note Search data, including snippets, authors, and media, for topic discovery.",
        "operationId": "getSearchNoteV3",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "Access token for this API service.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "keyword",
            "in": "query",
            "description": "Search keyword.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "Page number for pagination.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "Sort order for the result set.\n\nAvailable Values:\n- `general`: General\n- `popularity_descending`: Hot\n- `time_descending`: New",
            "required": false,
            "schema": {
              "type": "string",
              "default": "general",
              "description": "Xiaohongshu Search Note Sort",
              "enum": [
                "general",
                "popularity_descending",
                "time_descending"
              ]
            }
          },
          {
            "name": "noteType",
            "in": "query",
            "description": "Note type filter.\n\nAvailable Values:\n- `_0`: General\n- `_1`: Video\n- `_2`: Normal",
            "required": false,
            "schema": {
              "type": "string",
              "default": "_0",
              "description": "Xiaohongshu Search Note Type",
              "enum": [
                "_0",
                "_1",
                "_2"
              ]
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {}
                }
              }
            }
          }
        },
        "deprecated": true,
        "x-order": "12002100"
      }
    }
  },
  "components": {}
}