稳定、快速、免费的 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": "1918年05月25日",
"title": "首批美国军用飞机在法参战"
},
{
"id": 2,
"year": "1928年05月25日",
"title": "中共决定将工农革命军定名“红军”"
},
{
"id": 3,
"year": "1941年05月25日",
"title": "毛泽东著文《揭破远东慕尼黑的阴谋》"
},
{
"id": 4,
"year": "1942年05月25日",
"title": "左权将军牺牲"
},
{
"id": 5,
"year": "1948年05月25日",
"title": "董存瑞牺牲"
},
{
"id": 6,
"year": "1960年05月25日",
"title": "我国登山队从北坡征服珠穆朗玛峰"
},
{
"id": 7,
"year": "1961年05月25日",
"title": "美国首次载人宇宙飞行成功"
},
{
"id": 8,
"year": "1963年05月25日",
"title": "非洲统一组织成立"
},
{
"id": 9,
"year": "1968年05月25日",
"title": "全国开展“清理阶级队伍”运动"
},
{
"id": 10,
"year": "1978年05月25日",
"title": "我国与阿曼苏丹国建交"
},
{
"id": 11,
"year": "1979年05月25日",
"title": "美国发生航空事故 死亡273人"
},
{
"id": 12,
"year": "1980年05月25日",
"title": "人民日报社迁址"
},
{
"id": 13,
"year": "1981年05月25日",
"title": "海湾合作委员会首脑会议正式宣告诞生"
},
{
"id": 14,
"year": "1984年05月25日",
"title": "邓小平强调中国有权在港驻军"
},
{
"id": 15,
"year": "1986年05月25日",
"title": "美国举行人链募捐活动"
},
{
"id": 16,
"year": "1988年05月25日",
"title": "苏联公布侵阿苏军伤亡人数"
},
{
"id": 17,
"year": "1997年05月25日",
"title": "禁止化学武器组织正式成立"
},
{
"id": 18,
"year": "1997年05月25日",
"title": "国际命名“杨振宁星”"
},
{
"id": 19,
"year": "1997年05月25日",
"title": "著名历史学家罗尔纲逝世"
},
{
"id": 20,
"year": "1998年05月25日",
"title": "狮身人面像历时10年修复全面竣工"
},
{
"id": 21,
"year": "2000年05月25日",
"title": "秦昌典王式惠因严重失职渎职被开除党籍"
},
{
"id": 22,
"year": "2002年05月25日",
"title": "台湾在澎湖附近海域发生空难 死亡225人"
}
]
}
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);