hormuz-tracker-data
v1.0.0
Published
Real-time Strait of Hormuz vessel tracking, oil prices, and maritime intelligence data. Fetch live AIS vessel positions, Brent/WTI oil prices, transit counts, and naval carrier positions for the world's most critical chokepoint.
Maintainers
Readme
hormuz-tracker-data
Real-time data fetchers for the Strait of Hormuz — oil prices, vessel transit counts, maritime weather, and breaking news.
Live Dashboard | Full Analysis | The Board — Geopolitical Intelligence
Install
npm install hormuz-tracker-dataUsage
const { fetchOilPrices, fetchTransitHistory, fetchWeather, fetchNews } = require('hormuz-tracker-data');
// Oil prices (requires free API keys)
const prices = await fetchOilPrices(EIA_KEY, FRED_KEY);
// [{ date: "2026-03-15", brent: 94.35, wti: 94.65 }, ...]
// Transit counts (no key needed)
const transits = await fetchTransitHistory();
// [{ date: "2026-03-15", total: 42, tanker: 18, container: 8, ... }, ...]
// Weather (no key needed)
const weather = await fetchWeather();
// [{ date: "2026-03-17", tempMax: 26, windMax: 29, gustMax: 42, windWarning: true }, ...]
// Breaking news (no key needed)
const news = await fetchNews();
// [{ title: "...", link: "...", source: "Reuters", date: "..." }, ...]API Keys
| Service | Required For | Get Key |
|---------|-------------|---------|
| EIA | fetchOilPrices() | Free |
| FRED | fetchOilPrices() | Free |
fetchTransitHistory(), fetchWeather(), and fetchNews() require no API keys.
Data Sources
- Oil prices: EIA (spot) + FRED (historical)
- Transit counts: IMF PortWatch
- Weather: Open-Meteo
- News: Google News RSS
Related
- Hormuz Tracker Dashboard — live visualization
- The Board — AI-powered geopolitical intelligence
- GitHub — full source code
License
MIT
