加载中...

心知天气 API

有免费额度

提供商:心知天气

国内领先气象数据服务商,提供实时天气、逐小时/逐日预报、生活指数、灾害预警等数据。

国内实时天气生活指数REST

快速接入示例

cURL
curl -X GET "https://api.seniverse.com/v3/weather/now.json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
JavaScript / Node.js
const response = await fetch('https://api.seniverse.com/v3/weather/now.json', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
});
const data = await response.json();
console.log(data);
Python
import requests

url = "https://api.seniverse.com/v3/weather/now.json"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
data = response.json()
print(data)