For Agents
Query NOAA historical weather and climate observations by station, location, dataset, and date range — including temperature, precipitation, and other measured data values.
Use for: I need to fetch daily temperature observations for a specific weather station, List all NOAA climate datasets available for download, Find weather stations within a U.S. ZIP code, Retrieve precipitation totals for January 2025 at station GHCND:USW00094728
Not supported: Does not handle weather forecasts, severe-weather alerts, or radar imagery — use for historical climate observations and station metadata only.
NOAA Climate Data Online (CDO) Web Services v2 provides programmatic access to weather and climate observations curated by the National Centers for Environmental Information. The API exposes 13 endpoints covering datasets, data categories, data types, location categories, locations, weather stations, and observed data values, allowing developers and analysts to pull historical climate records by station, location, date range, and data type. A `token` header issued by NOAA authenticates each request.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Climate Data Online Web Services, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Climate Data Online Web Services API.
List available climate datasets such as Daily Summaries (GHCND) and Global Summary of the Month
Look up weather stations near a given FIPS code, ZIP code, or lat-lon bounding box
Retrieve observed data values filtered by dataset, station, data type, and date range
Browse data categories like temperature, precipitation, wind, and cloudiness
Resolve location categories (state, county, country) and their member locations
Inspect data type definitions including units of measurement and valid date ranges
Patterns agents use Climate Data Online Web Services API for, with concrete tasks.
★ Historical Weather Lookup for Insurance Claims
Insurers verify weather conditions on the date of a claim by querying NOAA station observations near the loss location. The CDO API returns daily summaries (precipitation, snowfall, max and min temperature) for specific stations, replacing manual weather-record requests. Each lookup completes in seconds rather than the hours required for paper certifications.
Call GET /data with datasetid=GHCND, stationid=GHCND:USW00094728, startdate=2025-01-15, enddate=2025-01-15 and return precipitation and max temperature
Climate Research and Trend Analysis
Researchers pull multi-decade climate normals and daily summaries to analyse temperature and precipitation trends across regions. The API supports location category filters (state, county) and date ranges that span the full archive, enabling reproducible studies without managing local NOAA mirrors.
List datasets via GET /datasets, then fetch monthly summaries for a state via GET /data with locationid set to the state's FIPS code
Renewable Energy Site Assessment
Solar and wind developers query NOAA stations near a candidate site to estimate average sunshine, wind, and precipitation patterns. The API's GET /stations endpoint filters by lat-lon extent, and GET /data returns historical observations that feed yield models. Replaces ad-hoc CSV downloads from the NOAA portal.
Search stations with extent=lat1,lon1,lat2,lon2 via GET /stations, then pull monthly wind data for the closest station
Agent-Driven Climate Q&A
An AI assistant answers questions like 'how much rain fell in Boston in January 2025?' by searching Jentic for the right NOAA endpoint, loading the schema, and executing the call. The token credential stays in the Jentic vault, so the agent never sees the raw NOAA token.
Search Jentic for 'fetch noaa precipitation data', resolve to GET /data, and execute with the correct stationid and date range
13 endpoints — noaa climate data online (cdo) web services v2 provides programmatic access to weather and climate observations curated by the national centers for environmental information.
METHOD
PATH
DESCRIPTION
/datasets
List all available climate datasets
/datasets/{datasetid}
Get a specific dataset by ID
/stations
List weather stations with optional filters
/locations
List locations (states, counties, ZIPs)
/datatypes
List available data types
/data
Get observed data values
/datasets
List all available climate datasets
/datasets/{datasetid}
Get a specific dataset by ID
/stations
List weather stations with optional filters
/locations
List locations (states, counties, ZIPs)
/datatypes
List available data types
/data
Get observed data values
Three things that make agents converge on Jentic-routed access.
Credential isolation
The NOAA `token` header is stored encrypted in the Jentic vault. Agents receive scoped execution tokens — the raw token never enters the agent's context or logs.
Intent-based discovery
Agents search by intent (e.g., 'fetch precipitation data for a station') and Jentic returns GET /data with its schema, so the agent supplies datasetid, stationid, and date range without learning NOAA's parameter conventions.
Time to first call
Direct NOAA CDO integration: 1-2 days to register, learn dataset and station IDs, and handle pagination. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Climate Data Online Web Services API through Jentic.
What authentication does the NOAA Climate Data Online API use?
The API uses a `token` header (security scheme `tokenAuth`) issued free of charge by NOAA at https://www.ncdc.noaa.gov/cdo-web/token. Through Jentic, the token is stored in the encrypted vault and supplied at execution time — agents never see the raw token.
Can I retrieve daily temperature data for a specific station?
Yes. Call GET /data with datasetid=GHCND, the station's stationid (e.g., GHCND:USW00094728), a startdate and enddate, and optional datatypeid filters like TMAX, TMIN, or PRCP. Date ranges are limited to one year per request for the GHCND dataset.
What are the rate limits for the NOAA CDO API?
NOAA enforces 5 requests/second and 10,000 requests/day per token. Responses include the result count and offset/limit pagination — large queries should iterate using the limit (max 1,000) and offset parameters.
How do I find a weather station near a location through Jentic?
Search Jentic for 'find NOAA weather stations near a location', load the schema for GET /stations, and execute with `extent` (lat1,lon1,lat2,lon2) or `locationid` (FIPS code). The response lists matching stations and their data coverage.
Is the NOAA Climate Data Online API free?
Yes. The API is provided by NOAA at no cost. A free token is required and can be requested at https://www.ncdc.noaa.gov/cdo-web/token.
GET STARTED