稳定、快速、免费的 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": "1790年04月17日",
"title": "电学奠基人富兰克林逝世"
},
{
"id": 2,
"year": "1837年04月17日",
"title": "美国金融家摩根诞辰"
},
{
"id": 3,
"year": "1894年04月17日",
"title": "赫鲁晓夫诞辰"
},
{
"id": 4,
"year": "1895年04月17日",
"title": "《马关条约》签订"
},
{
"id": 5,
"year": "1898年04月17日",
"title": "维新派成立保国会"
},
{
"id": 6,
"year": "1912年04月17日",
"title": "俄国连那金矿工人暴动"
},
{
"id": 7,
"year": "1917年04月17日",
"title": "列宁发表《四月提纲》"
},
{
"id": 8,
"year": "1934年04月17日",
"title": "日本发表侵华宣言——天羽声明"
},
{
"id": 9,
"year": "1961年04月17日",
"title": "美国制造吉隆滩事件"
},
{
"id": 10,
"year": "1980年04月17日",
"title": "国际货币基金组织正式决定恢复我国的代表权"
},
{
"id": 11,
"year": "1985年04月17日",
"title": "国务院发布《关于严禁淫秽物品的规定》"
},
{
"id": 12,
"year": "1989年04月17日",
"title": "中国台北体育代表队首次来大陆比赛"
},
{
"id": 13,
"year": "1997年04月17日",
"title": "韩国法院终审判决前总统全斗焕和卢泰愚"
},
{
"id": 14,
"year": "1998年04月17日",
"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);