Catalog/data-weather-hong-kong

Data

Hong Kong weather (current + forecast) API

Current conditions and a multi-day forecast for Hong Kong, Hong Kong — temperature, feels-like, humidity, wind, precipitation, and human-readable conditions (keyless, Open-Meteo). Answers 'weather in Hong Kong', 'Hong Kong forecast', 'is it raining in Hong Kong', 'temperature in Hong Kong right now'.

Price$0.01per request
MethodPOST
Route/v1/weather/hong-kong
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache1800s public
dataweatherhongkongforecasttemperaturehkconditions
API URLhttps://x402.hexl.dev/v1/weather/hong-kong
Integration docs
Example request
{
  "days": 5
}
Example response
{
  "city": "Hong Kong",
  "country": "HK",
  "latitude": 22.3193,
  "longitude": 114.1694,
  "timezone": "Asia/Hong_Kong",
  "current": {
    "observedAt": "2026-06-03T12:00",
    "temperatureC": 22.4,
    "feelsLikeC": 22.1,
    "humidityPct": 60,
    "windSpeedKmh": 11.2,
    "precipitationMm": 0,
    "conditions": "Partly cloudy"
  },
  "forecast": [
    {
      "date": "2026-06-03",
      "conditions": "Partly cloudy",
      "highC": 25.1,
      "lowC": 17.3,
      "precipitationMm": 0,
      "precipitationChancePct": 10
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "days": {
      "type": "number",
      "minimum": 1,
      "maximum": 16,
      "examples": [
        5
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}