All Categories
🌍

Environment

NASA FIRMS
NASA
Fire Information for Resource Management System. Near real-time global fire data.
Active Fire LocationsFire Radiative PowerBurned AreaNear Real-time UpdatesGlobal Coverage
API KeyFreeDailyGlobal
Quick start
const res = await fetch(
  `https://firms.modaps.eosdis.nasa.gov/api/country/csv/${process.env.FIRMS_MAP_KEY}/VIIRS_SNPP_NRT/USA/1/2024-01-01`
);
const text = await res.text();
const lines = text.trim().split('\n');
console.log(`Active fire detections: ${lines.length - 1}`);
console.log('Sample:', lines[1]);
Visit
NOAA Earthquake Hazards
NOAA
NOAA coastal and seismic hazard data for the US and territories.
Seismic HazardEarthquake HistoryGround Motion DataTsunami RiskCoastal Hazards
No AuthFreeReal-timeCountry
Quick start
const res = await fetch(
  'https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/significant_month.geojson'
);
const { features } = await res.json();
console.log(`Significant earthquakes this month: ${features.length}`);
features.slice(0, 5).forEach(f => {
  const { place, mag, time } = f.properties;
  console.log(`M${mag} — ${place} — ${new Date(time).toDateString()}`);
});
Visit