Get current weather conditions for any location worldwide. Returns temperature, humidity, wind speed, pressure, visibility, and feels-like temperature in a single API call.
{
"status": "ok",
"error": null,
"data": {
"tempC": 13.3,
"tempF": 55.9,
"windMph": 4.7,
"windKph": 7.6,
"windDegree": 273,
"windDir": "W",
"pressureMb": 1022,
"pressureIn": 30.17,
"precipMm": 0,
"precipIn": 0,
"feelslikeC": 13,
"feelslikeF": 55.3,
"visKm": 16,
"visMiles": 9,
"gustMph": 7.2,
"gustKph": 11.6
}
}






Power travel apps, delivery platforms, and outdoor planners with reliable conditions. Each call aggregates readings from meteorological stations worldwide and computes the derived metrics — feels-like, gusts, visibility — your users need to make a decision.
From farmers checking a frost forecast to dispatchers routing around low visibility, developers reach for this API when they need current weather that just works, in one request, in both metric and imperial units.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/weatherforecast?city=Paris x-api-key: your_key
Each request aggregates data from multiple weather sources and calculates derived metrics for accuracy.
One structured object, typically under 200 ms — ready to render.
{ tempC, tempF, windMph, … }
Each request aggregates data from multiple weather sources and calculates derived metrics for accuracy.
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseOur Weather API provides current conditions including temperature, humidity, wind speed, and visibility. A single API call returns all the data you need for weather dashboards and displays.
Integrate current weather data to show users real-time conditions including feels-like temperature, wind gusts, and visibility. Help users make informed decisions about outdoor activities right now.
Use real-time weather data to alert drivers about current conditions, adjust delivery windows, and prioritize routes based on visibility and wind conditions at specific locations.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/weatherforecast?city=San%20Francisco", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
Learn what weather data points mean and how to interpret them in your applications.
A complete guide to understanding AQI values, pollutants, and health recommendations.
Understanding UV index values and building sun safety features.
Understanding forecast reliability and how to communicate uncertainty to users.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog