clmmin
Retrieve daily minimum temperature records from Hong Kong Observatory by station, year, and optional month. Returns data in JSON or CSV format.
Instructions
Daily Minimum Temperature (CLMMINT) API Request
Parameters:
station: Station code (refer to documentation for full list)
year: Year (1884 - current year, station-specific range)
month: Month (1-12, optional but requires year)
rformat: 'json' or 'csv' (Response format, default: csv)
Request Example: https://data.weather.gov.hk/weatherAPI/opendata/opendata.php?dataType=CLMMINT&station=HKO&year=2025&rformat=json
Response Keys (JSON format):
type: Array with data type ["Min Temperature"]
fields: Array with field names ["Year", "Month", "Day", "Temperature(C)"]
data: Array of arrays with temperature data
legend: Array with station information
Response Keys (CSV format):
Type: Data type line
Header row: Year,Month,Day,Temperature(C)
Data rows: Actual temperature data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| station | Yes | Station code (e.g., HKO for Hong Kong Observatory) | |
| year | Yes | Year between 1884 and current year | |
| month | No | Optional month (1-12) when specific month data is needed | |
| rformat | No | Output format: 'json' or 'csv' (default: 'json') | json |