{
  "openapi": "3.0.0",
  "info": {
    "title": "微信公众号关键词搜索 API (V1)",
    "version": "1.0.0",
    "description": "获取微信公众号关键词搜索数据，包括账号名称、标题和发布时间，用于内容发现。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/weixin/search/v1": {
      "get": {
        "tags": [
          "微信公众号"
        ],
        "summary": "关键词搜索",
        "description": "获取微信公众号关键词搜索数据，包括账号名称、标题和发布时间，用于内容发现。",
        "operationId": "getApiWeixinSearchV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "API 的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "keyword",
            "in": "query",
            "description": "搜索关键词。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "分页偏移量（从0开始，每次增加20）。",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "searchType",
            "in": "query",
            "description": "搜索结果类型（公众号、文章等）。\n\n可用值：\n- `_0`: 全部\n- `_1`: 微信公众号\n- `_2`: 文章\n- `_7`: 微信视频号\n- `_262208`: 微信小程序\n- `_384`: 表情\n- `_16777728`: 百科\n- `_9`: 直播\n- `_1024`: 图书\n- `_512`: 音乐\n- `_16384`: 新闻\n- `_8192`: 微信指数\n- `_8`: 朋友圈",
            "required": false,
            "schema": {
              "type": "string",
              "default": "_0",
              "description": "Weixin Search Type",
              "enum": [
                "_0",
                "_1",
                "_2",
                "_7",
                "_262208",
                "_384",
                "_16777728",
                "_9",
                "_1024",
                "_512",
                "_16384",
                "_8192",
                "_8"
              ]
            }
          },
          {
            "name": "sortType",
            "in": "query",
            "description": "搜索结果排序标准。\n\n可用值：\n- `_0`: 默认\n- `_2`: 最新\n- `_4`: 热门",
            "required": false,
            "schema": {
              "type": "string",
              "default": "_0",
              "description": "Weixin Search Sort Type",
              "enum": [
                "_0",
                "_2",
                "_4"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": true,
        "x-order": 20001300,
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}