维梦API - 提供免费接口调用平台
该API已经过安全认证,请放心使用
语录 · 每日一句
每日一句立志的话生活更无边

接口地址: https://api.52vmy.cn/api/wl/yan/day

返回格式: JSON

请求方式: GET

请求示例: https://api.52vmy.cn/api/wl/yan/day

接口定制: 点此加入用户群

默认QPS: 每2秒最多3次 携带Token可无视限制

请求参数说明:

名称 必填 类型 说明
type string 返回格式默认JSON可选text

返回参数说明:

名称 类型 说明

返回示例:

{
    "code": 200,
    "msg": "成功",
    "data": {
        "day": "2025-02-10",
        "zh": "恭贺新禧,万事如意。",
        "en": "Best wishes for the holidays and happiness throughout the New Year."
    }
}

PHP代码示例:

$type = $_GET["type"];
$url = "https://api.52vmy.cn/api/wl/yan/day?type=".$type;
echo file_get_contents($url);