{
    "openapi": "3.0.0",
    "info": {
        "title": "全网热搜榜 - API文档",
        "version": "1.0.0",
        "description": "社会热搜话题事件榜单，返回标题、热度和事件简介（可能为空）。类似接口：<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\/196\" target=\"_blank\">微信热搜榜<\/a>"
    },
    "servers": [
        {
            "url": "https:\/\/apis.tianapi.com"
        }
    ],
    "paths": {
        "\/networkhot\/index": {
            "get": {
                "summary": "全网热搜榜",
                "tags": [
                    "全网热搜榜"
                ],
                "description": "查询全网热搜榜单列表",
                "parameters": [
                    {
                        "name": "key",
                        "in": "query",
                        "description": "API密钥",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "description": "API密钥"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "title": {
                                            "type": "string",
                                            "example": "浙江新增本土确诊44例",
                                            "description": "热搜话题"
                                        },
                                        "digest": {
                                            "type": "string",
                                            "example": "12月13日0-24时，浙江新增确诊病例45例...",
                                            "description": "话题简介（可能为空）"
                                        },
                                        "hotnum": {
                                            "type": "int",
                                            "example": 3491764,
                                            "description": "热搜榜指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "title": "广东东莞报告2例无症状感染者",
                                                "digest": "12月13日，广东东莞市大朗镇在对返莞人员核酸检测中，发现2例新冠肺炎无症状感染者。目前两人已转运至定点收治医院隔离治疗。",
                                                "hotnum": 7608117
                                            },
                                            {
                                                "title": "汉文帝霸陵确定为西安江村大墓",
                                                "digest": "12月14日，国家文物局在北京召开线上会议，考古队员通过精细发掘和缜密分析，判断出“江村大墓”就是汉文帝的霸陵。",
                                                "hotnum": 4385084
                                            },
                                            {
                                                "title": "浙江新增本土确诊44例",
                                                "digest": "12月13日0-24时，浙江新增确诊病例45例，其中杭州市2例、宁波市4例、绍兴市38例、境外输入1例(刚果金输入)。",
                                                "hotnum": 3491764
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "summary": "全网热搜榜",
                "tags": [
                    "全网热搜榜"
                ],
                "description": "查询全网热搜榜单列表",
                "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": {
                                        "title": {
                                            "type": "string",
                                            "example": "浙江新增本土确诊44例",
                                            "description": "热搜话题"
                                        },
                                        "digest": {
                                            "type": "string",
                                            "example": "12月13日0-24时，浙江新增确诊病例45例...",
                                            "description": "话题简介（可能为空）"
                                        },
                                        "hotnum": {
                                            "type": "int",
                                            "example": 3491764,
                                            "description": "热搜榜指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "title": "广东东莞报告2例无症状感染者",
                                                "digest": "12月13日，广东东莞市大朗镇在对返莞人员核酸检测中，发现2例新冠肺炎无症状感染者。目前两人已转运至定点收治医院隔离治疗。",
                                                "hotnum": 7608117
                                            },
                                            {
                                                "title": "汉文帝霸陵确定为西安江村大墓",
                                                "digest": "12月14日，国家文物局在北京召开线上会议，考古队员通过精细发掘和缜密分析，判断出“江村大墓”就是汉文帝的霸陵。",
                                                "hotnum": 4385084
                                            },
                                            {
                                                "title": "浙江新增本土确诊44例",
                                                "digest": "12月13日0-24时，浙江新增确诊病例45例，其中杭州市2例、宁波市4例、绍兴市38例、境外输入1例(刚果金输入)。",
                                                "hotnum": 3491764
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "\/networkhot\/wangyi": {
            "get": {
                "summary": "网易热点榜",
                "tags": [
                    "全网热搜榜"
                ],
                "description": "查询网易新闻热点列表",
                "parameters": [
                    {
                        "name": "key",
                        "in": "query",
                        "description": "API密钥",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "description": "API密钥"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "title": {
                                            "type": "string",
                                            "example": "近3万元金手镯仅含足金十克",
                                            "description": "热搜标题"
                                        },
                                        "digest": {
                                            "type": "string",
                                            "description": "简介（一般为空）"
                                        },
                                        "hotnum": {
                                            "type": "int",
                                            "example": 2328790,
                                            "description": "热点指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "title": "杨洋拄拐现身医院",
                                                "digest": "",
                                                "hotnum": 2347280
                                            },
                                            {
                                                "title": "近3万元金手镯仅含足金十克",
                                                "digest": "",
                                                "hotnum": 2328790
                                            },
                                            {
                                                "title": "网友建议重庆地铁不准乘客携带菜筐",
                                                "digest": "",
                                                "hotnum": 2226810
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "summary": "网易热点榜",
                "tags": [
                    "全网热搜榜"
                ],
                "description": "查询网易新闻热点列表",
                "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": {
                                        "title": {
                                            "type": "string",
                                            "example": "近3万元金手镯仅含足金十克",
                                            "description": "热搜标题"
                                        },
                                        "digest": {
                                            "type": "string",
                                            "description": "简介（一般为空）"
                                        },
                                        "hotnum": {
                                            "type": "int",
                                            "example": 2328790,
                                            "description": "热点指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "title": "杨洋拄拐现身医院",
                                                "digest": "",
                                                "hotnum": 2347280
                                            },
                                            {
                                                "title": "近3万元金手镯仅含足金十克",
                                                "digest": "",
                                                "hotnum": 2328790
                                            },
                                            {
                                                "title": "网友建议重庆地铁不准乘客携带菜筐",
                                                "digest": "",
                                                "hotnum": 2226810
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "\/networkhot\/fenghuang": {
            "get": {
                "summary": "凤凰新闻榜",
                "tags": [
                    "全网热搜榜"
                ],
                "description": "查询凤凰新闻热点列表",
                "parameters": [
                    {
                        "name": "key",
                        "in": "query",
                        "description": "API密钥",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "description": "API密钥"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "title": {
                                            "type": "string",
                                            "example": "豆瓣酱疑现鼠头",
                                            "description": "热点标题"
                                        },
                                        "digest": {
                                            "type": "string",
                                            "description": "简介（一般为空）"
                                        },
                                        "hotnum": {
                                            "type": "int",
                                            "example": 7669020,
                                            "description": "热点指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "title": "豆瓣酱疑现鼠头",
                                                "digest": "",
                                                "hotnum": 7669020
                                            },
                                            {
                                                "title": "网友吐槽打臭车概率高",
                                                "digest": "",
                                                "hotnum": 7645470
                                            },
                                            {
                                                "title": "韩国瑜获年轻人支持",
                                                "digest": "",
                                                "hotnum": 7630310
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "summary": "凤凰新闻榜",
                "tags": [
                    "全网热搜榜"
                ],
                "description": "查询凤凰新闻热点列表",
                "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": {
                                        "title": {
                                            "type": "string",
                                            "example": "豆瓣酱疑现鼠头",
                                            "description": "热点标题"
                                        },
                                        "digest": {
                                            "type": "string",
                                            "description": "简介（一般为空）"
                                        },
                                        "hotnum": {
                                            "type": "int",
                                            "example": 7669020,
                                            "description": "热点指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "title": "豆瓣酱疑现鼠头",
                                                "digest": "",
                                                "hotnum": 7669020
                                            },
                                            {
                                                "title": "网友吐槽打臭车概率高",
                                                "digest": "",
                                                "hotnum": 7645470
                                            },
                                            {
                                                "title": "韩国瑜获年轻人支持",
                                                "digest": "",
                                                "hotnum": 7630310
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}