稳定、快速、免费的 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": "1853年03月30日",
"title": "梵高诞辰"
},
{
"id": 2,
"year": "1928年03月30日",
"title": "毛泽东从严治军"
},
{
"id": 3,
"year": "1940年03月30日",
"title": "伪国民政府成立,汪精卫出任主席"
},
{
"id": 4,
"year": "1948年03月30日",
"title": "国共双方军事力量对比发生巨大变化"
},
{
"id": 5,
"year": "1951年03月30日",
"title": "美国第一起原子弹间谍案"
},
{
"id": 6,
"year": "1979年03月30日",
"title": "邓小平提出坚持四项基本原则"
},
{
"id": 7,
"year": "1979年03月30日",
"title": "生物学家童第周逝世"
},
{
"id": 8,
"year": "1981年03月30日",
"title": "《读者文摘》杂志的创刊人德威特·华莱士逝世"
},
{
"id": 9,
"year": "1981年03月30日",
"title": "美国总统里根遇刺"
},
{
"id": 10,
"year": "1981年03月30日",
"title": "党中央国务院要求积极发展多种经营"
},
{
"id": 11,
"year": "1993年03月30日",
"title": "荣毅仁辞别中信公司,担任国家副主席"
},
{
"id": 12,
"year": "2002年03月30日",
"title": "武汉外滩花园违法楼全部炸除"
},
{
"id": 13,
"year": "2002年03月30日",
"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);