Open Government, Singapore
Live Singapore environment, transport and weather data, no key
Singapore's national open-data platform exposes real-time government feeds such as air temperature, rainfall and traffic, all as plain JSON. No signup or key is needed, and responses are CORS-enabled for browser apps. Handy for dashboards that want fresh readings straight from official sensors.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.data.gov.sg/v1/environment/air-temperature
{
"metadata": {
"stations": [
{
"id": "S107",
"device_id": "S107",
"name": "East Coast Parkway",
"location": {
"latitude": 1.3133,
"longitude": 103.962
}
}
],
"reading_type": "DBT 1M F",
"reading_unit": "deg C"
},
"items": [
{
"timestamp": "2026-07-06T00:10:00+08:00",
"readings": [
{
"station_id": "S107",
"value": 28.1
}
]
}
],
"api_info": {
"status": "healthy"
}
}curl "https://api.data.gov.sg/v1/environment/air-temperature"const res = await fetch("https://api.data.gov.sg/v1/environment/air-temperature");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.data.gov.sg/v1/environment/air-temperature")
print(res.json())/environment/air-temperaturePROBEDLive Singapore environment, transport and weather data, no key
/environmentEnvironment — documented GET route.
/environment/1Environment details by ID (example: 1).
/environment?limit=10Environment — documented GET route.
/environment/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Open Government, Singapore: common questions
Is Open Government, Singapore free to use?
Yes — Open Government, Singapore is a free government API. Free tier: Free — no API key required; limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Open Government, Singapore need an API key?
No — Open Government, Singapore needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Government, Singapore from the browser?
Yes — Open Government, Singapore returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Open Government, Singapore up right now?
Open Government, Singapore is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.