热榜热搜各站热榜聚合API


接口地址

https://api.vvhan.com/api/hotlist

返回格式

JSON

请求方式:

GET

请求示例(虎扑步行街)

https://api.vvhan.com/api/hotlist?type=huPu

请求示例(知乎热榜)

https://api.vvhan.com/api/hotlist?type=zhihuHot

请求示例(36氪)

https://api.vvhan.com/api/hotlist?type=36Ke

请求示例(百度热点)

https://api.vvhan.com/api/hotlist?type=baiduRD

请求示例(哔哩哔哩)

https://api.vvhan.com/api/hotlist?type=bili

请求示例(历史上的今天)

https://api.vvhan.com/api/hotlist?type=history

请求示例(贴吧热议)

https://api.vvhan.com/api/hotlist?type=baiduRY

请求示例(微博热搜)

https://api.vvhan.com/api/hotlist?type=wbHot

请求示例(抖音热点)

https://api.vvhan.com/api/hotlist?type=douyinHot

请求示例(豆瓣小组)

https://api.vvhan.com/api/hotlist?type=douban

请求示例(少数派)

https://api.vvhan.com/api/hotlist?type=ssPai

请求示例(IT资讯热榜)

https://api.vvhan.com/api/hotlist?type=itInfo

请求示例(IT资讯最新)

https://api.vvhan.com/api/hotlist?type=itNews

请求示例(微信热点)

https://api.vvhan.com/api/hotlist?type=wxHot

请求示例(微信美食)

https://api.vvhan.com/api/hotlist?type=wxFood

请求示例(微信搞笑)

https://api.vvhan.com/api/hotlist?type=wxJoke

请求示例(微信财经)

https://api.vvhan.com/api/hotlist?type=wxMoney

请求示例(微信科技)

https://api.vvhan.com/api/hotlist?type=wxKeJi

请求示例(微信八卦)

https://api.vvhan.com/api/hotlist?type=wxBaGua

请求示例(微信星座)

https://api.vvhan.com/api/hotlist?type=wxXingZuo

请求示例(微信旅游)

https://api.vvhan.com/api/hotlist?type=wxLvYou

参数说明

名称 必填 类型 说明
type string 热点标识

返回数据

{"success": true,"data":数组数据}

调用实例

自行调用

示例代码

<?php
header("Content-Type:text/json;charset=UTF-8"); date_default_timezone_set("PRC"); $hotlist = $_GET["hotlist"]; $url = "https://api.vvhan.com/api/hotlist?type=" . $hotlist; $data = file_get_contents($url); echo $data;
?>