Jet Fuel Price API for
Airlines & Aviation
US Gulf Coast Jet A per gallon, the A4A weekly index and Singapore jet kerosene — timestamped series for fuel hedging, route economics and procurement. Looking for the number itself? See today's jet fuel price per gallon.
The Fuel Cost Challenge
Volatile jet fuel prices can swing 10-20% in weeks, destroying route profitability
Hedging without data leads to poor timing and locked-in losses
Manual price tracking can't keep up with rapid market changes
Data-Driven Fuel Management
Real-time price feeds for immediate hedging and procurement decisions
Historical analysis to identify optimal hedging windows and price trends
Automated alerts when prices hit your target levels for action
Complete Aviation Fuel Coverage
Jet-A
US domestic standard
- US airports
- Regional prices
Jet-A1
International standard
- Global coverage
- Major hubs
Avgas
General aviation
- 100LL prices
- FBO coverage
SAF
Sustainable Aviation Fuel
- Premium tracking
- Availability data
Aviation Fuel Management Use Cases
Fuel Hedging
Time your hedging positions with real-time price data and historical trends.
- • Identify optimal entry points
- • Track crack spreads
- • Monitor forward curves
Route Profitability
Calculate true route costs with current fuel prices at origin and destination.
- • Per-route fuel costing
- • Tankering decisions
- • Fare optimization
Procurement
Negotiate better fuel contracts with real market data and price benchmarks.
- • Supplier comparison
- • Contract benchmarking
- • Spot vs contract analysis
Integration Example: Route Fuel Cost Calculator
// Route fuel cost from the series we serve (no per-airport endpoint exists —
// jet fuel is priced off regional benchmarks, then delivery and into-plane fees).
// e.g. GET https://api.oilpriceapi.com/v1/prices/latest?by_code=JET_FUEL_USD
const BASE = "https://api.oilpriceapi.com/v1/prices/latest";
const headers = { Authorization: "Token YOUR_API_KEY" };
const latest = async (code) =>
(await fetch(`${BASE}?by_code=${code}`, { headers })).json();
const routeFuelCost = async (aircraft, flightHours) => {
// JET_FUEL_USD: US Gulf Coast kerosene-type jet fuel, USD per gallon, daily.
// JET_FUEL_A4A_USD: Airlines for America weekly index, USD per gallon.
const [usgc, a4a] = await Promise.all([
latest("JET_FUEL_USD"),
latest("JET_FUEL_A4A_USD"),
]);
const burnGalPerHour = { B737: 850, A320: 800, B777: 2500 }[aircraft];
const gallons = burnGalPerHour * flightHours;
return {
gallons,
costAtUsgcSpot: (gallons * usgc.data.price).toFixed(2),
costAtA4aIndex: (gallons * a4a.data.price).toFixed(2),
asOf: usgc.data.created_at, // every response carries its source timestamp
};
};Calculate Your Potential Savings
Based on average fuel spend of $200M/year and 1.5% cost improvement
Price Alerts
Get notified when jet fuel hits your target price for hedging or procurement.
Historical Data
Access 10+ years of jet fuel price history for trend analysis and modeling.
Airport Coverage
Fuel prices for major airports worldwide including regional variations.
99.9% Uptime Target
Enterprise-grade reliability for mission-critical fuel operations.
source-aware freshness
Near real-time prices from multiple exchange and industry sources.
Crack Spreads
Monitor jet fuel crack spreads for refining margin insights.
Aviation Fuel API FAQ
Do you provide airport-specific pricing?
Yes, we provide fuel prices for major airports worldwide. Our Enterprise plan includes detailed airport-level pricing. Standard plans include regional averages and major hub prices.
Can I integrate with our flight planning system?
Absolutely. Our REST API integrates with any system that can make HTTP requests. We have customers using our data in flight planning, fuel management, and ERP systems. We provide SDKs for Python, JavaScript, and other languages.
What's included in the historical data?
Our Starter plan includes 1 year of historical data. Professional and above include unlimited history for backtesting hedging strategies. Historical data includes daily OHLC prices, weekly averages, and monthly summaries.
Do you track Sustainable Aviation Fuel (SAF)?
Yes, we track SAF pricing and availability at airports where it's offered. This includes price premiums over conventional jet fuel and supply availability. SAF tracking is available in our Production and Enterprise plans.
Start Optimizing Your Fuel Costs Today
Join airlines and aviation companies using our API for fuel hedging and procurement. 7-day free trial with 10,000 API requests to test our data quality.