$0.003
per call · USD Coin on Base
Official National Weather Service forecast for any US coordinate - six 12-hour day/night periods by default, or hourly - each with temperature in C and F, precipitation probability, a wind speed range in km/h, wind direction and a short forecast, plus the NWS issue time so an agent can judge its age. detail=full adds the narrative, icon, dewpoint and humidity. United States, its territories and coastal waters only. Use when: What is the weather forecast for these US coordinates?
Endpoint
GET https://api.eckari.com/v1/weather/us/forecast6
Calls / 30d
1
Unique payers / 30d
Aug 27
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.eckari.com/v1/weather/us/forecast", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.eckari.com/v1/weather/us/forecast?lat=38.8977&lon=-77.0365" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"data": {
"generated_at": "2026-08-18T12:03:31.000Z",
"location": {
"city": "Washington",
"state": "DC",
"timezone": "America/New_York"
},
"periods": [
{
"end_time": "2026-08-18T18:00:00-04:00",
"is_daytime": true,
"name": "Today",
"precipitation_probability_pct": 11,
"short_forecast": "Partly Sunny",
"start_time": "2026-08-18T08:00:00-04:00",
"temperature_c": 31.11,
"temperature_f": 88,
"wind_direction": "N",
"wind_speed_range_kmh": {
"max": 11.27,
"min": 4.83
}
},
{
"end_time": "2026-08-19T06:00:00-04:00",
"is_daytime": false,
"name": "Tonight",
"precipitation_probability_pct": 1,
"short_forecast": "Partly Cloudy",
"start_time": "2026-08-18T18:00:00-04:00",
"temperature_c": 21.67,
"temperature_f": 71,
"wind_direction": "NW",
"wind_speed_range_kmh": {
"max": 9.66,
"min": 1.61
}
},
{
"end_time": "2026-08-19T18:00:00-04:00",
"is_daytime": true,
"name": "Wednesday",
"precipitation_probability_pct": 0,
"short_forecast": "Sunny",
"start_time": "2026-08-19T06:00:00-04:00",
"temperature_c": 32.22,
"temperature_f": 90,
"wind_direction": "W",
"wind_speed_range_kmh": {
"max": 8.05,
"min": 8.05
}
},
{
"end_time": "2026-08-20T06:00:00-04:00",
"is_daytime": false,
"name": "Wednesday Night",
"precipitation_probability_pct": 19,
"short_forecast": "Partly Cloudy then Slight Chance Showers And Thunderstorms",
"start_time": "2026-08-19T18:00:00-04:00",
"temperature_c": 22.78,
"temperature_f": 73,
"wind_direction": "SW",
"wind_speed_range_kmh": {
"max": 8.05,
"min": 1.61
}
},
{
"end_time": "2026-08-20T18:00:00-04:00",
"is_daytime": true,
"name": "Thursday",
"precipitation_probability_pct": 70,
"short_forecast": "Showers And Thunderstorms Likely",
"start_time": "2026-08-20T06:00:00-04:00",
"temperature_c": 31.11,
"temperature_f": 88,
"wind_direction": "N",
"wind_speed_range_kmh": {
"max": 9.66,
"min": 1.61
}
},
{
"end_time": "2026-08-21T06:00:00-04:00",
"is_daytime": false,
"name": "Thursday Night",
"precipitation_probability_pct": 70,
"short_forecast": "Showers And Thunderstorms Likely",
"start_time": "2026-08-20T18:00:00-04:00",
"temperature_c": 21.11,
"temperature_f": 70,
"wind_direction": "NE",
"wind_speed_range_kmh": {
"max": 8.05,
"min": 1.61
}
}
],
"query": {
"detail": "compact",
"hourly": false,
"hours": null,
"lat": 38.8977,
"lon": -77.0365,
"period_limit": 6
},
"updated_at": "2026-08-18T11:55:05.000Z",
"valid_from": "2026-08-18T05:00:00.000Z"
},
"meta": {
"capability": "weather.us.forecast",
"freshness": "near_live",
"source": "nws",
"version": "4.0.0"
}
}Payment details
0x9d6b6fdb04040a55d58b24ff4c90c08cf6083c8fUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from Eckari & similar services
Eckari · UK Directors
api-staging.eckari.com
Return the officers registered against a UK company on the Companies House register — directors, secretaries, LLP members and corporate officers — with role, appointment and resignation dates, nationality, country of residence, occupation, month/year of birth and public correspondence address. Active officers by default; include_resigned adds history. Paging is explicit: has_more and next_offset say whether more matching officers remain. Use when: Who are the directors of this UK company?
Eckari · FX Reference Rate
api-staging.eckari.com
European Central Bank euro foreign exchange reference rate for a pair - the latest published fix or any date in the last 90 days. The ECB publishes EUR/XXX only, so inverse and cross rates are computed by Eckari from the same fix and named in rate_derivation. Reference rates, one per TARGET working day around 16:00 CET, not tradable market rates. Source and reuse conditions travel in meta.attribution. Use when: What is the ECB reference rate for EUR to USD?
Eckari · UK Status
api-staging.eckari.com
Return the current legal status of a UK company from the Companies House register — active, dissolved, liquidation, administration, receivership, voluntary-arrangement and others — with status detail, cessation date, a derived is_active (true for the live-on-the-register statuses active, open and registered) and a derived is_striking_off for an active company with a proposal to strike off. One call, one authoritative register answer. Use when: Is this UK company still active?