Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / Climate Data Online Web Services
Climate Data Online Web Services logo

Ncdc Noaa Gov Climate Data Online Web Services

✓ Official Vendor SpecData EnrichmentData TransformationapiKey13 EndpointsREST

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Climate Data Online Web Services to your agent

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.

1

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 | sh
2

Step 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 instance

Jentic 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.

Capabilities

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

Use Cases

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

Key Endpoints

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

GET

/datasets

List all available climate datasets

GET

/datasets/{datasetid}

Get a specific dataset by ID

GET

/stations

List weather stations with optional filters

GET

/locations

List locations (states, counties, ZIPs)

GET

/datatypes

List available data types

GET

/data

Get observed data values

GET

/datasets

List all available climate datasets

GET

/datasets/{datasetid}

Get a specific dataset by ID

GET

/stations

List weather stations with optional filters

GET

/locations

List locations (states, counties, ZIPs)

GET

/datatypes

List available data types

GET

/data

Get observed data values

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

NCEI Data Service API

→

Sister NOAA service offering bulk environmental data downloads; CDO v2 is better for filtered queries by station and date.

Use NCEI Data Service for bulk dataset retrieval; use CDO v2 for filtered station-level queries with structured pagination.

Alternative

OpenWeatherMap API

→

OpenWeatherMap provides current and forecast weather worldwide; NOAA CDO is U.S.-centric historical observations.

Choose OpenWeatherMap for forecasts and current conditions globally; choose NOAA CDO for authoritative U.S. historical records.

Alternative

Norwegian Meteorological Institute API

→

Met.no provides European forecast data; NOAA CDO covers U.S. historical observations.

Use met.no for European forecasts; use NOAA CDO for U.S. historical climate records and station data.

Alternative

WeatherAPI.com

→

WeatherAPI.com is a commercial multi-region forecast and history API; NOAA CDO is the authoritative free U.S. archive.

Use WeatherAPI.com when global coverage and forecasts are required; use NOAA CDO for U.S. station-level historical records.

FAQs

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

Start building with Climate Data Online Web Services API

Explore with Jentic
View OpenAPI Document