NDBC Buoy Data API
NDBC Buoy Data API — Description: Access real-time buoy readings and informa…
NDBC Buoy Data API exposes description: Access real-time buoy readings and information from the National Data Buoy Center (NDBC) with this API. Currently under development, it provides essential data for ocean and weather monitoring enthusiasts and professionals. Supports various content types, including JSON, XML, CSV, and HTML. Ideal for integrating buoy data into your applications or research projects. We verified a keyless GET endpoint returning JSON (Weather). Check the provider docs for rate limits and terms
GET https://surftruths.com/api/buoys.json
[
{
"id": "41001",
"name": "EAST HATTERAS - 150 NM East of Cape Hatteras",
"latitude": 34.714,
"longitude": -72.248,
"owner": "NDBC",
"url": "https://surftruths.com/api/buoys/41001.json",
"buoys_url": "https://surftruths.com/api/buoys.json",
"readings_url": "https://surftruths.com/api/buoys/41001/readings.json"
},
{
"id": "41002",
"name": "SOUTH HATTERAS - 225 NM South of Cape Hatteras",
"latitude": 31.759,
"longitude": -74.936,
"owner": "NDBC",
"url": "https://surftruths.com/api/buoys/41002.json",
"buoys_url": "https://surftruths.com/api/buoys.json",
"readings_url": "https://surftruths.com/api/buoys/41002/readings.json"
}
]curl "https://surftruths.com/api/buoys.json"const res = await fetch("https://surftruths.com/api/buoys.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://surftruths.com/api/buoys.json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/api/buoys.jsonPROBEDNDBC Buoy Data API — Description: Access real-time buoy readings and informa…
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/buoys.xmlBuoys Xml — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
NDBC Buoy Data API: common questions
Is NDBC Buoy Data API free to use?
Yes — NDBC Buoy Data API is a free weather API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does NDBC Buoy Data API need an API key?
No — NDBC Buoy Data API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call NDBC Buoy Data API from the browser?
Not directly — NDBC Buoy Data API doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is NDBC Buoy Data API up right now?
As of our last scheduled check, NDBC Buoy Data API is dying with 84.3% uptime over 90 days and a 575 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.