wttr.in

Weather as JSON (or ASCII art) for any place on Earth

🌦 WeatherUNMONITOREDchecked 59 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

The console-friendly weather service, best known for its ASCII terminal output, also speaks JSON via the format=j1 query. One GET returns current conditions plus a multi-day forecast for a named location. No key needed and CORS is wide open.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://wttr.in/London?format=j1

{
  "current_condition": [
    {
      "temp_C": "21",
      "temp_F": "70",
      "humidity": "69",
      "weatherDesc": [
        {
          "value": "Partly cloudy"
        }
      ],
      "windspeedKmph": "15",
      "winddir16Point": "WNW"
    }
  ]
}
Call itcurl · fetch · python
curl "https://wttr.in/London?format=j1"
const res = await fetch("https://wttr.in/London?format=j1");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://wttr.in/London?format=j1")
print(res.json())
Endpoints · 3On scheduleFULL DOCS ↗
First rollup pending — GET /London?format=j1 has been probed
GET/London?format=j1PROBED

Weather as JSON (or ASCII art) for any place on Earth

GET/London?limit=5

London — documented GET route.

GET/London?page=1

London — documented GET route.

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

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

wttr.in: common questions

Is wttr.in free to use?

Yes — wttr.in is a free weather API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does wttr.in need an API key?

No — wttr.in needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished (informal per-IP throttling)).

Can I call wttr.in from the browser?

Yes — wttr.in 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 wttr.in up right now?

As of our last scheduled check, wttr.in is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.