稳定、快速、免费的 API 接口服务
看一看历史上的今天都发生了什么
接口地址: https://api.52vmy.cn/api/wl/today/new
返回格式: JSON
请求方式: GET
请求示例: https://api.52vmy.cn/api/wl/today/new
接口定制: 点此加入用户群
默认QPS: 每2秒最多4次 携带Token可无视限制
请求参数说明:
| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
| id | 否 | string | 查询数据的ID |
| day | 否 | string | 查询日期,0101 |
| type | 是 | string | 返回格式默认JSON可选text |
返回参数说明:
| 名称 | 类型 | 说明 |
|---|
返回示例:
{
"code": 200,
"msg": "成功",
"data": [
{
"id": 1,
"year": "1899年04月11日",
"title": "美国占领菲律宾"
},
{
"id": 2,
"year": "1903年04月11日",
"title": "慈禧宠臣荣禄病死"
},
{
"id": 3,
"year": "1912年04月11日",
"title": "中国佛教总会成立"
},
{
"id": 4,
"year": "1919年04月11日",
"title": "大韩民国临时政府在上海成立"
},
{
"id": 5,
"year": "1948年04月11日",
"title": "南京中央大学自费生绝食抗议"
},
{
"id": 6,
"year": "1955年04月11日",
"title": "“克什米尔公主号”客机失事"
},
{
"id": 7,
"year": "1968年04月11日",
"title": "约翰逊签署民权法案,呼吁结束动乱"
},
{
"id": 8,
"year": "1982年04月11日",
"title": "英国影片《甘地》获奥斯卡最佳影片等8项大奖"
},
{
"id": 9,
"year": "1983年04月11日",
"title": "无锡上空降下巨冰"
},
{
"id": 10,
"year": "1985年04月11日",
"title": "阿尔巴尼亚劳动党中央第一书记霍查逝世"
},
{
"id": 11,
"year": "1988年04月11日",
"title": "苏聪获得奥斯卡奖"
},
{
"id": 12,
"year": "1989年04月11日",
"title": "日本首相竹下登辞职"
},
{
"id": 13,
"year": "1991年04月11日",
"title": "海湾战争正式停火"
},
{
"id": 14,
"year": "1994年04月11日",
"title": "克林顿夫妇补交税款"
},
{
"id": 15,
"year": "1994年04月11日",
"title": "沈太福被处决"
},
{
"id": 16,
"year": "1994年04月11日",
"title": "全国人大常委会副委员长楚图南逝世"
},
{
"id": 17,
"year": "1997年04月11日",
"title": "英国驻港海军基地关闭"
}
]
}
PHP代码示例:
$id = $_GET["id"]; $day = $_GET["day"]; $type = $_GET["type"]; $url = "https://api.52vmy.cn/api/wl/today/new?id=".$id."&day=".$day."&type=".$type; echo file_get_contents($url);