$ man climate-data
/climate-data
PRICE / CALL
$0.005
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
localeCATEGORY
uncategorized
STATUS
● live
NAME
climate-data — returns historical daily temperature, precipitation, humidity, wind, and solar radiation for any latitude/longitude
SYNOPSIS
POST https://x402.agentutility.ai/climate-data
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Returns historical daily temperature, precipitation, humidity, wind, and solar radiation for any latitude/longitude. Bounded daily point data from NASA POWER for up to 366 days. Good for agriculture, energy, insurance, climate risk screening, and weather-normalized analysis. Use it as a climate data API or historical weather data source.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| latitude | number | Decimal degrees, range [-90, 90]. Positive north. | required |
| longitude | number | Decimal degrees, range [-180, 180]. Positive east. | required |
| start | string | Start date in YYYY-MM-DD format. | required |
| end | string | End date in YYYY-MM-DD format. Defaults to start. Max window 366 days. | optional |
| parameters | array | Optional NASA POWER parameter list. Allowed: T2M, T2M_MAX, T2M_MIN, PRECTOTCORR, RH2M, WS2M, ALLSKY_SFC_SW_DWN. Defaults to T2M,T2M_MAX,T2M_MIN,PRECTOTCORR. | optional |
| community | string | NASA POWER community. Default RE. enum: RE · AG · SB | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| location | string | — |
| start | string | — |
| end | string | — |
| days | string | — |
| community | string | — |
| parameters | string | — |
| units | string | — |
| daily | string | — |
| source | string | — |
| attribution | string | — |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/climate-data \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the climate-data tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- localeclimatedataclimate-data
- methods
- POST
- cluster
- locale
- price
- $0.005 USDC per call
ADJACENT — other endpoints in locale
| endpoint | description | price |
|---|---|---|
| air-quality | Returns current air quality readings and AQI category for any latitude/longitude, with optional hourly forecast rows for the next 1-72 hours. | $0.005 |
| airport-code-lookup | Resolves airport codes to airport name, municipality, country, region, coordinates, elevation, scheduled-service flag, homepage, and Wiki… | $0.005 |
| astro-times | Sunrise sunset times. | $0.005 |
| country-info | Country info lookup. | $0.005 |
| holiday-lookup | Holiday calendar. | $0.005 |
| iata-airport-info | Looks up airport metadata from an IATA or ICAO code. | $0.005 |
| satellite-tile | Returns a recent cloud-free satellite image (Sentinel-2, 10m) as a PNG centered on a lat/lon at a slippy-map zoom level. | $0.005 |
| sunrise-sunset | Sunrise sunset times. | $0.005 |
SEE ALSO