韩小韩API接口 >>
热榜热搜各站热榜聚合API 百度热点采集、36氪24小时热榜、哔哩哔哩全站日榜、豆瓣小组精选、历史上的今天、少数派最热文章、百度热点、微博热搜、知乎热榜、抖音热点、IT资讯热榜,最新、百度贴吧热议、虎扑步行街聚合API免费接口
3799 韩小韩
接口地址
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
参数说明
返回数据
{"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;
?>