{
    "openapi": "3.0.0",
    "info": {
        "title": "抖音热搜榜 - API文档",
        "version": "1.0.0",
        "description": "返回50条抖音App热点视频话题榜单数据，每3分钟同步更新一次。类似接口：<a target=\"_blank\" href=\"https:\/\/www.tianapi.com\/apiview\/100\">微博热搜榜<\/a>、<a href=\"https:\/\/www.tianapi.com\/apiview\/68\" target=\"_blank\">百度热搜榜<\/a>、<a href=\"https:\/\/www.tianapi.com\/apiview\/196\" target=\"_blank\">微信话题榜<\/a>、<a href=\"https:\/\/www.tianapi.com\/apiview\/223\" target=\"_blank\">全网热搜榜<\/a>"
    },
    "servers": [
        {
            "url": "https:\/\/apis.tianapi.com"
        }
    ],
    "paths": {
        "\/douyinhot\/index": {
            "get": {
                "summary": "抖音热搜榜列表",
                "tags": [
                    "抖音热搜榜"
                ],
                "description": "查询抖音App热门搜索榜单列表",
                "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": "赵丽颖张慧雯斗舞",
                                            "description": "热点话题"
                                        },
                                        "label": {
                                            "type": "int",
                                            "example": 1,
                                            "description": "标签类型，1新，2荐，3热"
                                        },
                                        "hotindex": {
                                            "type": "int",
                                            "example": 9023742,
                                            "description": "热搜榜指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "word": "赵丽颖张慧雯斗舞",
                                                "label": 1,
                                                "hotindex": 9023742
                                            },
                                            {
                                                "word": "小S得知高以翔去世大哭",
                                                "label": 3,
                                                "hotindex": 7956448
                                            },
                                            {
                                                "word": "吴世勋8秒视频",
                                                "label": 0,
                                                "hotindex": 7658224
                                            },
                                            {
                                                "word": "药监局回应幼儿园厨师事件",
                                                "label": 3,
                                                "hotindex": 7449241
                                            },
                                            {
                                                "word": "夏之光模仿李佳琦",
                                                "label": 0,
                                                "hotindex": 7270640
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "summary": "抖音热搜榜列表",
                "tags": [
                    "抖音热搜榜"
                ],
                "description": "查询抖音App热门搜索榜单列表",
                "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": "赵丽颖张慧雯斗舞",
                                            "description": "热点话题"
                                        },
                                        "label": {
                                            "type": "int",
                                            "example": 1,
                                            "description": "标签类型，1新，2荐，3热"
                                        },
                                        "hotindex": {
                                            "type": "int",
                                            "example": 9023742,
                                            "description": "热搜榜指数"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "list": [
                                            {
                                                "word": "赵丽颖张慧雯斗舞",
                                                "label": 1,
                                                "hotindex": 9023742
                                            },
                                            {
                                                "word": "小S得知高以翔去世大哭",
                                                "label": 3,
                                                "hotindex": 7956448
                                            },
                                            {
                                                "word": "吴世勋8秒视频",
                                                "label": 0,
                                                "hotindex": 7658224
                                            },
                                            {
                                                "word": "药监局回应幼儿园厨师事件",
                                                "label": 3,
                                                "hotindex": 7449241
                                            },
                                            {
                                                "word": "夏之光模仿李佳琦",
                                                "label": 0,
                                                "hotindex": 7270640
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}