稳定、快速、免费的 API 接口服务
看一看历史上的今天都发生了什么
接口地址: https://api.52vmy.cn/api/wl/today/new
返回格式: JSON
请求方式: GET
请求示例: https://api.52vmy.cn/api/wl/today/new
接口定制: 点此加入用户群
默认QPS: 每2秒最多5次 Token可无视QPS
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
id | 否 | string | 查询数据的ID |
day | 否 | string | 查询日期,0101 |
type | 是 | string | 返回格式默认JSON可选text |
返回参数说明:
名称 | 类型 | 说明 |
---|
返回示例:
{ "code": 200, "msg": "成功", "data": [ { "id": 1, "year": "1869年11月03日", "title": "安庆教案发生" }, { "id": 2, "year": "1908年11月03日", "title": "画家吴作人诞生" }, { "id": 3, "year": "1912年11月03日", "title": "沙俄强迫外蒙签订《俄蒙协约》" }, { "id": 4, "year": "1918年11月03日", "title": "德国11月革命" }, { "id": 5, "year": "1935年11月03日", "title": "国民政府实行币制改革" }, { "id": 6, "year": "1935年11月03日", "title": "中共中央成立西北革命军委员会" }, { "id": 7, "year": "1937年11月03日", "title": "蒋介石不承认日本提出的停战七项要求" }, { "id": 8, "year": "1943年11月03日", "title": "中美空军混合大队成立" }, { "id": 9, "year": "1948年11月03日", "title": "陈布雷自杀" }, { "id": 10, "year": "1954年11月03日", "title": "西方现代美术巨匠马蒂斯逝世" }, { "id": 11, "year": "1957年11月03日", "title": "苏联载狗的卫星二号上天" }, { "id": 12, "year": "1982年11月03日", "title": "茅以升获美国工程学会外国院士称号" }, { "id": 13, "year": "1987年11月03日", "title": "联合国向袁隆平颁发科学奖" }, { "id": 14, "year": "1987年11月03日", "title": "文学家梁实秋逝世" }, { "id": 15, "year": "1989年11月03日", "title": "我国金石书画大师朱复戡逝世" }, { "id": 16, "year": "1992年11月03日", "title": "克林顿在美国总统大选中获胜" }, { "id": 17, "year": "1995年11月03日", "title": "支志明成为港澳地区首位中科院院士" }, { "id": 18, "year": "1997年11月03日", "title": "京九铁路顺利通过国家验收" }, { "id": 19, "year": "1998年11月03日", "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);