Open Government, Singapore

Live Singapore environment, transport and weather data, no key

🏛 GovernmentUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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"
  }
}
Call itcurl · fetch · python
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())
Endpoints · 5On scheduleFULL DOCS ↗
On schedule — GET /environment/air-temperature awaits first probe
GET/environment/air-temperaturePROBED

Live Singapore environment, transport and weather data, no key

GET/environment

Environment — documented GET route.

GET/environment/1

Environment details by ID (example: 1).

GET/environment?limit=10

Environment — documented GET route.

GET/environment/search?q=test

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.