稳定、快速、免费的 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": "1782年03月12日",
"title": "《四库全书》编成"
},
{
"id": 2,
"year": "1898年03月12日",
"title": "田汉诞辰"
},
{
"id": 3,
"year": "1925年03月12日",
"title": "孙中山逝世"
},
{
"id": 4,
"year": "1926年03月12日",
"title": "日本军舰炮轰大沽口"
},
{
"id": 5,
"year": "1930年03月12日",
"title": "甘地发动“食盐进军”,第二次不合作运动开始"
},
{
"id": 6,
"year": "1947年03月12日",
"title": "杜鲁门主义提出,美苏“冷战”正式开始"
},
{
"id": 7,
"year": "1979年03月12日",
"title": "我国重新恢复植树节"
},
{
"id": 8,
"year": "1985年03月12日",
"title": "台湾作家杨逵病逝"
},
{
"id": 9,
"year": "1990年03月12日",
"title": "中共十三届六中全会决定加强党同人民群众的联系"
},
{
"id": 10,
"year": "1993年03月12日",
"title": "王震逝世"
},
{
"id": 11,
"year": "1997年03月12日",
"title": "乡土文学作家刘绍棠在北京病逝"
},
{
"id": 12,
"year": "1999年03月12日",
"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);