# 虎扑榜单

摘要

虎扑榜单

Tip
虎扑热榜 API,自动爬取当日的热榜数据

接口地址:

https://apiserver.alcex.cn/daily-hot/hupu

请求方式:

GET/POST

返回格式:

JSON

Curl请求示例:

请先登录后查看请求示例
登录

请求参数:

请先登录后查看请求参数
登录

返回参数:

名称 类型 说明
code int 状态码
name str 名称
title str 标题
description str 介绍
link str 链接
total int 数据总数
updateTime str 更新时间
fromCache Bool 是否为缓存数据
data json 数据数组

状态码说明:

状态码 状态 说明
200 成功 请求成功,返回正确的数据
400 请求错误 请求参数错误或缺失必要参数
401 未授权 缺少有效的身份验证凭据
403 禁止访问 服务器理解请求但拒绝执行
404 未找到 请求的资源不存在
429 请求过多 请求频率超过限制
500 服务器错误 服务器内部错误
502 网关错误 网关或代理服务器错误
503 服务不可用 服务器暂时无法处理请求

返回示例:

{
  "code": 200,
  "name": "hupu",
  "title": "虎扑",
  "type": "步行街热帖",
  "params": {
    "type": {
      "name": "榜单分类",
      "type": {
        "1": "主干道",
        "6": "恋爱区",
        "11": "校园区",
        "12": "历史区",
        "612": "摄影区"
      }
    }
  },
  "link": "https://bbs.hupu.com/all-gambia",
  "total": 10,
  "fromCache": false,
  "updateTime": "2025-08-15T23:32:42.013Z",
  "data": [
    {
      "id": 634336093,
      "title": "不懂就问:同一个媒体,为什么夸詹姆斯就变成了“美媒”,夸科比库里的时候就变成了“自媒体”啊?",
      "author": "教父真的在看扉页已经翻烂",
      "hot": 74,
      "url": "https://bbs.hupu.com/634336093.html",
      "mobileUrl": "https://m.hupu.com/bbs/634336093.html"
    },
    {
      "id": 634243280,
      "title": "China写成Ching,“中国天眼”错得太离谱 !!",
      "author": "清迷呀",
      "hot": 13,
      "url": "https://bbs.hupu.com/634243280.html",
      "mobileUrl": "https://m.hupu.com/bbs/634243280.html"
    },
    {
      "id": 634353272,
      "title": "这榴莲怎么样",
      "author": "金球罗本",
      "hot": 1,
      "url": "https://bbs.hupu.com/634353272.html",
      "mobileUrl": "https://m.hupu.com/bbs/634353272.html"
    },
    {
      "id": 634281440,
      "title": "关于酒驾的事情,和大家分享一下。",
      "author": "韩老魔",
      "hot": 195,
      "url": "https://bbs.hupu.com/634281440.html",
      "mobileUrl": "https://m.hupu.com/bbs/634281440.html"
    },
    {
      "id": 634343161,
      "title": "还是输了,陈佩斯的傲骨没有拯救《戏台》,21天票房3.9亿!",
      "author": "文娱喵",
      "hot": 16,
      "url": "https://bbs.hupu.com/634343161.html",
      "mobileUrl": "https://m.hupu.com/bbs/634343161.html"
    },
    {
      "id": 634246820,
      "title": "你的低成本爱好是什么?",
      "author": "长安十二时辰李泌",
      "hot": 127,
      "url": "https://bbs.hupu.com/634246820.html",
      "mobileUrl": "https://m.hupu.com/bbs/634246820.html"
    },
    {
      "id": 634162484,
      "title": "这个要科普下,有用!",
      "author": "张纪中版天龙八部",
      "hot": 765,
      "url": "https://bbs.hupu.com/634162484.html",
      "mobileUrl": "https://m.hupu.com/bbs/634162484.html"
    },
    {
      "id": 634238128,
      "title": "理想车主再再上分,逆行谁也不让谁",
      "author": "手机定义我不是人",
      "hot": 51,
      "url": "https://bbs.hupu.com/634238128.html",
      "mobileUrl": "https://m.hupu.com/bbs/634238128.html"
    },
    {
      "id": 634283953,
      "title": "野球场遇到这样的人应该怎么办",
      "author": "加油莉莉艾",
      "hot": 222,
      "url": "https://bbs.hupu.com/634283953.html",
      "mobileUrl": "https://m.hupu.com/bbs/634283953.html"
    },
    {
      "id": 634290908,
      "title": "全国唯一一个生育率逆势增长的城市:湖北天门,来看天门市做了什么?jr怎么看?适合全国推广嘛?",
      "author": "yanheeic",
      "hot": 67,
      "url": "https://bbs.hupu.com/634290908.html",
      "mobileUrl": "https://m.hupu.com/bbs/634290908.html"
    }
  ]
}

错误返回示例:

{
  "code": 400,
  "error": "请求参数验证失败",
  "message": "请求参数缺失或无效,请查看官网文档以解决此问题:https://api.alcex.cn/",
  "details": [
    "query.id: Field required"
  ],
  "timestamp": 1755182973,
  "request_id": "21646ea2a01c461298cdbdbdb3f3a663"
}
{
  "code": 404,
  "error": "HTTP错误",
  "message": "Not Found",
  "timestamp": 1755182878,
  "request_id": "9ddc3b08d6724e4eafc2b4e2c1f24190"
}
{
    "code": 500,
    "error": "请求错误",
    "message": "请求处理过程中发生错误,请检查请求参数是否正确", 
    "timestamp": 1755182846,
    "request_id": "1cb82ff6aac5482caeac1999df66dccb"
}

多语言代码示例:

正在生成代码示例...

在线测试

提示:在线测试可能无法正常返回数据,建议使用专业工具测试。

Apifox
在 Apifox 中调试

使用专业的API调试工具进行更详细的测试

文档信息
标签:
虎扑 hupu
添加时间: 2025-08-16 20:26:13
最后更新: 2025-08-16 23:59:36