{
    "openapi": "3.0.0",
    "info": {
        "title": "腾讯热搜榜 - API文档",
        "version": "1.0.0",
        "description": "腾讯生态平台热点资讯话题，每10-30分钟更新一次。类似接口：<a target=\"_blank\" href=\"https:\/\/www.tianapi.com\/apiview\/68\">百度热搜榜<\/a>、<a href=\"https:\/\/www.tianapi.com\/apiview\/155\" target=\"_blank\">抖音话题榜<\/a>、<a href=\"https:\/\/www.tianapi.com\/apiview\/100\" target=\"_blank\">微博话题榜<\/a>、<a href=\"https:\/\/www.tianapi.com\/apiview\/223\" target=\"_blank\">全网热搜榜<\/a>"
    },
    "servers": [
        {
            "url": "https:\/\/apis.tianapi.com"
        }
    ],
    "paths": {
        "\/wxhottopic\/index": {
            "get": {
                "summary": "微信热搜榜查询",
                "tags": [
                    "腾讯热搜榜"
                ],
                "description": "默认返回50条微信热搜榜单信息",
                "parameters": [
                    {
                        "name": "key",
                        "in": "query",
                        "description": "API密钥",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "description": "API密钥"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "word": {
                                            "type": "string",
                                            "example": "31省区市新增确诊22例",
                                            "description": "话题"
                                        },
                                        "index": {
                                            "type": "int",
                                            "example": 9,
                                            "description": "排序"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "word": "31省区市新增确诊22例",
                                                "index": 9
                                            },
                                            {
                                                "word": "男子发文称被副局长锁在家中殴打",
                                                "index": 8
                                            },
                                            {
                                                "word": "中央气象台继续发布暴雨橙色预警",
                                                "index": 7
                                            },
                                            {
                                                "word": "葡萄牙总统采访中跳海救人",
                                                "index": 6
                                            },
                                            {
                                                "word": "镇安7.1亿豪华中学学生发声",
                                                "index": 5
                                            },
                                            {
                                                "word": "林心如霍建华庆祝结婚四周年",
                                                "index": 4
                                            },
                                            {
                                                "word": "安倍晋三进入庆应大学医院",
                                                "index": 3
                                            },
                                            {
                                                "word": "微软公司考虑收购TikTok英国业务",
                                                "index": 2
                                            },
                                            {
                                                "word": "江西嫌犯案发前住旅店拒刷身份证",
                                                "index": 1
                                            },
                                            {
                                                "word": "塞维利亚淘汰曼联",
                                                "index": 0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "summary": "微信热搜榜查询",
                "tags": [
                    "腾讯热搜榜"
                ],
                "description": "默认返回50条微信热搜榜单信息",
                "requestBody": {
                    "content": {
                        "application\/x-www-form-urlencoded": {
                            "schema": {
                                "type": "object",
                                "properties": {
                                    "key": {
                                        "type": "string",
                                        "description": "API密钥"
                                    }
                                },
                                "required": [
                                    "key"
                                ]
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "word": {
                                            "type": "string",
                                            "example": "31省区市新增确诊22例",
                                            "description": "话题"
                                        },
                                        "index": {
                                            "type": "int",
                                            "example": 9,
                                            "description": "排序"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "word": "31省区市新增确诊22例",
                                                "index": 9
                                            },
                                            {
                                                "word": "男子发文称被副局长锁在家中殴打",
                                                "index": 8
                                            },
                                            {
                                                "word": "中央气象台继续发布暴雨橙色预警",
                                                "index": 7
                                            },
                                            {
                                                "word": "葡萄牙总统采访中跳海救人",
                                                "index": 6
                                            },
                                            {
                                                "word": "镇安7.1亿豪华中学学生发声",
                                                "index": 5
                                            },
                                            {
                                                "word": "林心如霍建华庆祝结婚四周年",
                                                "index": 4
                                            },
                                            {
                                                "word": "安倍晋三进入庆应大学医院",
                                                "index": 3
                                            },
                                            {
                                                "word": "微软公司考虑收购TikTok英国业务",
                                                "index": 2
                                            },
                                            {
                                                "word": "江西嫌犯案发前住旅店拒刷身份证",
                                                "index": 1
                                            },
                                            {
                                                "word": "塞维利亚淘汰曼联",
                                                "index": 0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}