稳定、快速、免费的 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": "1912年03月23日",
"title": "美国火箭专家布劳思诞辰"
},
{
"id": 2,
"year": "1927年03月23日",
"title": "安庆惨案"
},
{
"id": 3,
"year": "1938年03月23日",
"title": "台儿庄会战开始"
},
{
"id": 4,
"year": "1939年03月23日",
"title": "奥地利心理学家弗洛伊德逝世"
},
{
"id": 5,
"year": "1950年03月23日",
"title": "世界气象组织成立"
},
{
"id": 6,
"year": "1970年03月23日",
"title": "柬埔寨民族统一阵线成立"
},
{
"id": 7,
"year": "1979年03月23日",
"title": "中共中央讨论国民经济调整问题"
},
{
"id": 8,
"year": "1983年03月23日",
"title": "里根提出星球大战防务计划"
},
{
"id": 9,
"year": "1984年03月23日",
"title": "中日友好21世纪委员会成立"
},
{
"id": 10,
"year": "1985年03月23日",
"title": "齐亚·哈克就任巴基斯坦总统"
},
{
"id": 11,
"year": "1989年03月23日",
"title": "邓小平说10年改革最大失误教育发展不够"
},
{
"id": 12,
"year": "1993年03月23日",
"title": "中国第一家性用品商店“亚当夏娃保健中心”开业"
},
{
"id": 13,
"year": "1998年03月23日",
"title": "中国发售首批证券投资基金"
},
{
"id": 14,
"year": "1998年03月23日",
"title": "叶利钦解散俄政府"
},
{
"id": 15,
"year": "2001年03月23日",
"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);