apyhub
GEOLOCATION · STANDARD DATA

Retrieve NOAA Weather Point Metadata API

What it does

NOAA Point Metadata returns metadata for a geographic point when you send latitude and longitude as query parameters. Use it to look up NOAA-related point information for a specific coordinate pair.

Send lat and lon in the request. lat must be between -90 and 90, and lon must be between -180 and 180. The response is an object with additional properties, so the payload may vary depending on the point you look up.

This is useful when your application needs to enrich a map click, validate a location before showing weather-related content, or attach NOAA context to a coordinate stored in your system. Because the endpoint is point-based, it fits workflows that already work with raw GPS coordinates rather than addresses or place names.

Use NOAA Point Metadata when you need a lightweight lookup step between coordinates and NOAA-specific point data.

GET
NOAA point metadata
http://localhost:8080/dosvak/noaa-point-metadata

QUICKSTART

GUIDE

Quickstart

Look up NOAA point metadata for a latitude/longitude pair using query parameters.

curl -X GET "http://localhost:8080/dosvak/noaa-point-metadata?lat=34.0522&lon=-118.2437" \
  -H "apy-token: $APY_TOKEN"

What you'll get back

Returns a JSON object. The schema does not declare any specific response fields, so the exact shape may vary.

{
  "grid_id": "ABC",
  "grid_x": 155,
  "grid_y": 45,
  "forecast": "https://example.com/forecast",
  "forecast_hourly": "https://example.com/forecast/hourly"
}
TRY ITLIVE · 100 ATOMS
Loading your default key…
The full key is used to call the gateway and stays in this tab — never sent to orbit or saved.

About this endpoint

What it does

Retrieves NOAA point metadata for a geographic coordinate. The endpoint takes lat and lon as query parameters and returns a JSON object; the response shape is not further defined in the schema.

Query Parameter(s)

AttributeTypeMandatoryDescription
latNumberYesLatitude in decimal degrees. Minimum -90, maximum 90.
lonNumberYesLongitude in decimal degrees. Minimum -180, maximum 180.

Response

Returns a JSON object. The output schema does not define any fixed top-level fields; it allows additional properties, so the exact response shape is not captured in the schema.

Query parameters

Name
Type
Description
latREQUIRED
number
lonREQUIRED
number
▣ COMMON ERRORS

Errors any endpoint can return

400bad_request

Required parameter missing or malformed body.

401unauthorized

API key missing, revoked, or not authorized for this service.

429rate_limited

Your plan's per-second rate exceeded. Retry with exponential backoff.

503upstream_busy

Backend temporarily unavailable. Try again in a few seconds.