稳定、快速、免费的 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": "271年04月03日", "title": "地图学家裴秀逝世" }, { "id": 2, "year": "1783年04月03日", "title": "美国文学之父欧文诞辰" }, { "id": 3, "year": "1905年04月03日", "title": "革命军中马前卒——邹容牺牲" }, { "id": 4, "year": "1930年04月03日", "title": "德国前总理科尔诞辰" }, { "id": 5, "year": "1946年04月03日", "title": "盟国对日管制委员会成立" }, { "id": 6, "year": "1949年04月03日", "title": "中华全国民主妇女联合会成立" }, { "id": 7, "year": "1991年04月03日", "title": "宋庆龄雕像在文昌落成" }, { "id": 8, "year": "1992年04月03日", "title": "全国人大通过关于兴建长江三峡工程的决议" }, { "id": 9, "year": "1995年04月03日", "title": "越公布抗美救国战争伤亡数字" }, { "id": 10, "year": "1995年04月03日", "title": "我国与波黑建立外交关系" }, { "id": 11, "year": "1995年04月03日", "title": "第三次全国工业普查开始" }, { "id": 12, "year": "1998年04月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);