稳定、快速、免费的 API 接口服务
查询各省份的油价价格
接口地址: https://api.52vmy.cn/api/query/oil
返回格式: JSON
请求方式: GET
请求示例: https://api.52vmy.cn/api/query/oil?city=湖北
接口定制: 点此加入用户群
默认QPS: 每2秒最多4次 携带Token可无视限制
请求参数说明:
| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
| city | 是 | string | 省份城市 |
| type | 否 | string | 返回格式默认JSON可选text |
返回参数说明:
| 名称 | 类型 | 说明 |
|---|
返回示例:
{
"code": 200,
"msg": "成功",
"data": {
"city": "湖北",
"0": "7.22",
"92": "7.69",
"95": "8.24",
"98": "9.03"
}
}
PHP代码示例:
$city = $_GET["city"]; $type = $_GET["type"]; $url = "https://api.52vmy.cn/api/query/oil?city=".$city."&type=".$type; echo file_get_contents($url);