基本信息
接口名称:
实时天气查询
请求方法:
GET
计费类型:
免费
接口文档
# API文档
## 接口说明
实时天气
## 请求地址
`/api/tq`
## 请求方法
`GET`
## 请求参数
| 参数名 | 类型 | 必填 | 说明 |
|-------|------|------|------|
| city | string | 是 | 城市编码 |
## 响应示例
```json
{
"status": "1",
"count": "1",
"info": "OK",
"infocode": "10000",
"lives": [
{
"province": "北京",
"city": "东城区",
"adcode": "110101",
"weather": "多云",
"temperature": "30",
"winddirection": "南",
"windpower": "≤3",
"humidity": "68",
"reporttime": "2025-08-02 12:39:34",
"temperature_float": "30.0",
"humidity_float": "68.0"
}
]
}
```
请求参数
参数名 | 是否必填 | 类型 | 参数说明 | 示例值 |
---|---|---|---|---|
city | 是 | string | 城市编码 | 110101 |
apikey | 是 | string | 密钥 | fsgdd221434123 |
请求示例
{ "city": "110101", "apikey": "fsgdd221434123" }
返回参数
参数名 | 类型 | 说明 |
---|---|---|
status | string | 状态码 |
返回示例
{ "status": "1" }