空气质量指数
查询全国城市空气质量指数

接口地址: https://58.linkpc.net/doc/aqi.html

返回格式: JSON

请求方式: GET/POST

请求示例: https://58.linkpc.net/api/aqi?area=郑州

请求参数说明:

名称 必填 类型 说明
area String 地区名

返回参数说明:

名称 类型 说明
area String 地区
area_code String 地区代码
so2 String 二氧化硫一小时平均,μg/m3
o3 String 臭氧1小时平均,μg/m3
pm2_5 String 颗粒物(粒径小于等于2.5μm)1小时平均,μg/m3
primary_pollutant String 首要污染物
co String 一氧化碳1小时平均,mg/m3
num String 污染数
no2 String 二氧化氮1小时平均,μg/m3
quality String 空气质量指数类别,有“优、良、轻度污染、中度污染、重度污染、严重污染”6类
aqi String 空气质量指数(AQI)
pm10 String 颗粒物(粒径小于等于10μm)1小时平均,μg/m3
o3_8h String 臭氧8小时滑动平均,μg/m3
time String 更新时间

返回示例:

{
"code": 200,
"msg": "success",
"data": {
"area": "郑州",
"area_code": "zhengzhou",
"so2": "5",
"o3": "7",
"pm2_5": "72",
"primary_pollutant": "细颗粒物(PM2.5)",
"co": "0.9",
"num": "313",
"no2": "57",
"quality": "良好",
"aqi": "97",
"pm10": "91",
"o3_8h": "_",
"time": "2024-11-22 06:40:00.016"
}
}

错误码格式说明:

名称 类型 说明

代码示例:

<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/aqi';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);