{
  "openapi": "3.1.0",
  "info": {
    "title": "小红书蒲公英创作者笔记列表 API (V1)",
    "version": "v0",
    "description": "检索带有广告、排序方式、笔记类型和第三方平台筛选条件的小红书蒲公英创作者笔记分页列表。用于浏览已知创作者的选定内容。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "全球生产 API（默认）"
    }
  ],
  "tags": [
    {
      "name": "小红书蒲公英",
      "description": "小红书蒲公英创作者市场资料、受众洞察、内容表现和活动分析。",
      "x-platform-id": "xiaohongshu-creator-marketplace-pugongying",
      "x-platform-aliases": [
        "Xiaohongshu Pugongying",
        "Pugongying",
        "小红书蒲公英",
        "蒲公英"
      ],
      "x-platform-detection-aliases": [
        "Xiaohongshu Pugongying",
        "Pugongying",
        "小红书蒲公英",
        "蒲公英"
      ]
    }
  ],
  "paths": {
    "/api/xiaohongshu-pgy/api/solar/kol/dataV2/notesDetail/v1": {
      "get": {
        "tags": [
          "小红书蒲公英"
        ],
        "summary": "创作者笔记列表",
        "description": "检索带有广告、排序方式、笔记类型和第三方平台筛选条件的小红书蒲公英创作者笔记分页列表。用于浏览已知创作者的选定内容。",
        "operationId": "getApiXiaohongshuPgyApiSolarKolDataV2NotesDetailV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "用户鉴权令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userId",
            "in": "query",
            "description": "KOL的用户ID。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "advertiseSwitch",
            "in": "query",
            "description": "广告过滤器。\n\n可用值：\n- `ALL`：所有笔记\n- `ORGANIC_ONLY`：仅限自然笔记",
            "required": false,
            "schema": {
              "type": "string",
              "default": "ALL",
              "description": "广告过滤器。",
              "enum": [
                "ALL",
                "ORGANIC_ONLY"
              ]
            }
          },
          {
            "name": "orderType",
            "in": "query",
            "description": "排序方式。\n\n可选值：\n- `LATEST`: 最新\n- `MOST_READ`: 最多阅读\n- `MOST_INTERACT`: 最多互动",
            "required": false,
            "schema": {
              "type": "string",
              "default": "LATEST",
              "description": "排序方式。",
              "enum": [
                "LATEST",
                "MOST_READ",
                "MOST_INTERACT"
              ]
            }
          },
          {
            "name": "noteType",
            "in": "query",
            "description": "笔记类型。\n\n可用值：\n- `ALL`: 所有类型\n- `COOPERATION`: 合作笔记\n- `PHOTO_TEXT`: 图文笔记\n- `VIDEO`: 纯视频笔记",
            "required": false,
            "schema": {
              "type": "string",
              "default": "ALL",
              "description": "笔记类型。",
              "enum": [
                "ALL",
                "COOPERATION",
                "PHOTO_TEXT",
                "VIDEO"
              ]
            }
          },
          {
            "name": "isThirdPlatform",
            "in": "query",
            "description": "是否来自第三方平台。\n\n可用值：\n- `NO`: 否\n- `YES`: 是",
            "required": false,
            "schema": {
              "type": "string",
              "default": "NO",
              "description": "是否来自第三方平台。",
              "enum": [
                "NO",
                "YES"
              ]
            }
          },
          {
            "name": "pageNumber",
            "in": "query",
            "description": "页码。",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          },
          "400": {
            "description": "请求参数或请求体无效",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          },
          "401": {
            "description": "访问令牌无效或未激活",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          },
          "403": {
            "description": "权限不足",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          },
          "429": {
            "description": "请求速率或每日配额已超限",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          },
          "500": {
            "description": "服务器内部错误",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          },
          "503": {
            "description": "服务暂时不可用",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "format": "int32",
                      "enum": [
                        0,
                        100,
                        101,
                        202,
                        300,
                        301,
                        302,
                        303,
                        400,
                        404,
                        500,
                        503,
                        600,
                        601,
                        602
                      ]
                    },
                    "message": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "data": {},
                    "recordTime": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "requestId": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "code",
                    "data",
                    "message",
                    "recordTime"
                  ]
                }
              }
            }
          }
        },
        "x-order": "13002895",
        "x-api-version": "v1",
        "x-search-aliases": [
          "Xiaohongshu Pugongying creator note list",
          "Pugongying filtered creator notes",
          "Xiaohongshu creator content list",
          "小红书蒲公英达人笔记列表",
          "蒲公英筛选博主笔记",
          "小红书达人内容列表"
        ],
        "x-highlights": [],
        "x-endpoint-family": "xiaohongshu_pgy_api_solar_kol_datav2_notesdetail"
      }
    }
  }
}