A Singapore Government Agency Website
Official website links end with .gov.sg
Government agencies communicate via .gov.sg websites (e.g. go.gov.sg/open). Trusted websites

Secure websites use HTTPS

Look for a lock () or https:// as an added precaution. Share sensitive information only on official, secure websites.

Realtime Weather Readings across Singapore

NEA provides APIs for readings of temperature, humidity, precipitation and wind conditions at up to one-minute intervals. The data is provided at weather-station level.

5 related datasets

Related datasets are grouped into a collection based on themes, topics or common attributes for easier access and exploration. All datasets within a collection are published and managed by the same agency.

Legacy Air Temperature across Singapore

APIover 1 year ago

Coverage: Dec 2016 to Sep 2024

Legacy Rainfall across Singapore

APIover 1 year ago

Coverage: Dec 2016 to Sep 2024

Legacy Relative Humidity across Singapore

APIover 1 year ago

Coverage: Dec 2016 to Sep 2024

Legacy Wind Direction across Singapore

APIover 1 year ago

Coverage: Dec 2016 to Sep 2024

Legacy Wind Speed across Singapore

APIover 1 year ago

Coverage: Dec 2016 to Sep 2024

Sample OpenAPI query

This code can be used to test a sample API query. It retrieves the metadata for this collection. For a complete guide on query parameters and syntax, please refer to the API documentation. Try it out on your browser to see the response schema.

import requests
          
collectionId = 1459          
url = "https://api-production.data.gov.sg/v2/public/api/collections/{}/metadata".format(collectionId)
        
response = requests.get(url)
print(response.json())