稳定、快速、免费的 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": "1161年03月11日",
"title": "南宋发行纸币:交子"
},
{
"id": 2,
"year": "1912年03月11日",
"title": "《中华民国临时约法》颁布"
},
{
"id": 3,
"year": "1912年03月11日",
"title": "孙中山下令劝禁缠足"
},
{
"id": 4,
"year": "1925年03月11日",
"title": "孙中山签署“总理遗嘱”"
},
{
"id": 5,
"year": "1931年03月11日",
"title": "报业巨头鲁伯特·默多克出生"
},
{
"id": 6,
"year": "1946年03月11日",
"title": "音乐工作者张寒晖病逝"
},
{
"id": 7,
"year": "1952年03月11日",
"title": "志愿军追记罗盛教特等功,授予“一级爱民模范”称号"
},
{
"id": 8,
"year": "1955年03月11日",
"title": "英国细菌学家弗莱明逝世"
},
{
"id": 9,
"year": "1974年03月11日",
"title": "陕西临潼农民发现秦始皇兵马俑"
},
{
"id": 10,
"year": "1978年03月11日",
"title": "国家投巨资兴建宝钢"
},
{
"id": 11,
"year": "1985年03月11日",
"title": "戈尔巴乔夫当选为苏共中央总书记"
},
{
"id": 12,
"year": "1990年03月11日",
"title": "中国女将军李贞逝世"
},
{
"id": 13,
"year": "1995年03月11日",
"title": "陈露获中国首枚世界花样滑冰金牌"
},
{
"id": 14,
"year": "1996年03月11日",
"title": "韩国前总统全斗焕和卢泰愚出庭受审"
},
{
"id": 15,
"year": "2000年03月11日",
"title": "江西萍乡发生烟花爆竹爆炸事故 造成33人死亡"
}
]
}
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);