Historical weather and climate database
Historical weather and climate database. Access daily temperature highs, lows, total precipitation (rain/snow), wind speeds, and cloud conditions for any coordinates or city worldwide. Essential for geointelligence, climate modeling, historical records, and agricultural planning.
2000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-26
updated
Provider
vibesprings.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x38C063312719220c676E988f0DEE14B4ec0e44C8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "data-provider",
"info": {
"input": {
"method": "GET",
"queryParams": {
"end_date": "2024-01-07",
"location": "London",
"start_date": "2024-01-01"
},
"type": "http"
},
"output": {
"example": {
"days": [
{
"condition": "Partly cloudy",
"date": "2024-01-01",
"precipitation_mm": 1.2,
"temp_max_c": 8.5,
"temp_min_c": 4.2,
"wind_max_kmh": 15.4
}
],
"latitude": 51.5074,
"location": "London, Greater London, United Kingdom",
"longitude": -0.1278,
"period": {
"end": "2024-01-07",
"start": "2024-01-01"
},
"processingTime": "120ms",
"summary": {
"avg_temp_c": 6.35,
"days_with_rain": 3,
"total_precipitation_mm": 5.4
},
"timezone": "Europe/London"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"end_date": {
"description": "End date for historical query in YYYY-MM-DD format (maximum range: 90 days)",
"type": "string"
},
"location": {
"description": "City name, region, country, or geocode coordinates (e.g. 'London', 'Paris', '40.7128,-74.0060')",
"type": "string"
},
"start_date": {
"description": "Start date for historical query in YYYY-MM-DD format (must be in the past)",
"type": "string"
}
},
"required": [
"location",
"start_date",
"end_date"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"weather",
"historical-weather",
"climate-data",
"precipitation",
"temperature-history",
"geointelligence",
"environmental-data"
]
}
}Use it
curl
curl "https://vibesprings.net/api/weather" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://vibesprings.net/api/weather");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://vibesprings.net/api/weather")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/305.json, and this resource appears in /discovery/resources and /discovery/search.