维梦API - 提供免费接口调用平台
该API已经过安全认证,请放心使用
工具 · 空气吸收剂量率
全国空气吸收剂量率

接口地址: https://api.52vmy.cn/api/query/aqi

返回格式: JSON

请求方式: GET

请求示例: https://api.52vmy.cn/api/query/aqi?city=湖北

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

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

请求参数说明:

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

返回参数说明:

名称 类型 说明

返回示例:


Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /www/wwwroot/api.52vmy.cn/view/api/query/aqi/index.php on line 7

Warning: file_get_contents(): Failed to enable crypto in /www/wwwroot/api.52vmy.cn/view/api/query/aqi/index.php on line 7

Warning: file_get_contents(https://data.rmtc.org.cn/gis/listtype0M.html): failed to open stream: operation failed in /www/wwwroot/api.52vmy.cn/view/api/query/aqi/index.php on line 7
{ "code": 200, "msg": "成功", "data": null }

PHP代码示例:

$city = $_GET["city"];
$type = $_GET["type"];
$url = "https://api.52vmy.cn/api/query/aqi?city=".$city."&type=".$type;
echo file_get_contents($url);