维梦API - 提供免费接口调用平台
该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": "1710年04月08日",
            "title": "康熙命编纂《字典》"
        },
        {
            "id": 2,
            "year": "1902年04月08日",
            "title": "俄国与清政府签订中俄《交收东三省条约》"
        },
        {
            "id": 3,
            "year": "1904年04月08日",
            "title": "英法条约签订 协约国形成"
        },
        {
            "id": 4,
            "year": "1913年04月08日",
            "title": "中华民国第一届国会开幕"
        },
        {
            "id": 5,
            "year": "1935年04月08日",
            "title": "《纽约时报》发行人奥克斯逝世"
        },
        {
            "id": 6,
            "year": "1938年04月08日",
            "title": "联合国秘书长安南诞辰"
        },
        {
            "id": 7,
            "year": "1939年04月08日",
            "title": "意大利入侵阿尔巴尼亚"
        },
        {
            "id": 8,
            "year": "1946年04月08日",
            "title": "王若飞、叶挺、秦邦宪、邓发等因飞机失事遇难"
        },
        {
            "id": 9,
            "year": "1968年04月08日",
            "title": "严凤英逝世"
        },
        {
            "id": 10,
            "year": "1972年04月08日",
            "title": "峨眉山金顶庙宇化为灰烬"
        },
        {
            "id": 11,
            "year": "1973年04月08日",
            "title": "毕加索逝世"
        },
        {
            "id": 12,
            "year": "1980年04月08日",
            "title": "全国人大取消“四大”"
        },
        {
            "id": 13,
            "year": "1989年04月08日",
            "title": "墨西哥贩毒大王落网"
        },
        {
            "id": 14,
            "year": "1991年04月08日",
            "title": "台湾“国大会”在一场“打斗”中召开"
        },
        {
            "id": 15,
            "year": "1993年04月08日",
            "title": "世界上跨径最大的斜拉桥——上海杨浦大桥合龙"
        },
        {
            "id": 16,
            "year": "1994年04月08日",
            "title": "世界卫生组织宣布小儿麻痹病基本绝迹"
        },
        {
            "id": 17,
            "year": "1994年04月08日",
            "title": "日本首相细川宣布辞职"
        },
        {
            "id": 18,
            "year": "1996年04月08日",
            "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);