Jet Fuel (JET_FUEL_USD)
Status: ✅ Available | 📅 Weekly publication | 📊 Historical data
U.S. Gulf Coast kerosene-type jet fuel market-price observations. The source publishes a weekly Wednesday batch containing weekday observations through the prior Monday; OilPriceAPI checks daily for new or revised periods.
Quick Reference
| Property | Value |
|---|---|
| Commodity Code | JET_FUEL_USD |
| Name | Jet Fuel |
| Category | Refined Products |
| Currency | USD |
| Unit | USD/gallon |
| Publication | Weekly batch, typically Wednesday |
| Observation Frequency | Weekdays |
| Source | Published market reporting (EIA-hosted series) |
Get Latest Price
GET/v1/prices/latest?by_code=JET_FUEL_USD
Request
curl -X GET "https://api.oilpriceapi.com/v1/prices/latest?by_code=JET_FUEL_USD" \
-H "Authorization: Token YOUR_API_KEY" \
-H "Accept: application/json"
Response
{
"status": "success",
"data": {
"price": 3.38,
"formatted": "$3.38",
"currency": "USD",
"code": "JET_FUEL_USD",
"created_at": "2026-07-15T21:00:00.000Z",
"observed_at": "2026-07-13T00:00:00.000Z",
"source_date": "2026-07-13",
"type": "spot_price",
"unit": "gallon",
"source": "market_reporting",
"as_of": "2026-07-13T00:00:00.000Z",
"collected_at": "2026-07-15T21:00:00.000Z",
"stale": false,
"age_days": 2,
"synthetic": false
}
}
Get Historical Data
Past 24 Hours
GET /v1/prices/past_day?by_code=JET_FUEL_USD
Past 7 Days
GET /v1/prices/past_week?by_code=JET_FUEL_USD
Past 30 Days
GET /v1/prices/past_month?by_code=JET_FUEL_USD
Full Available History
GET /v1/prices/historical?by_code=JET_FUEL_USD&interval=daily&per_page=500
See Historical Prices API for full documentation.
Code Examples
cURL
# Get latest price
curl -H "Authorization: Token YOUR_API_KEY" \
"https://api.oilpriceapi.com/v1/prices/latest?by_code=JET_FUEL_USD"
Python
import requests
api_key = "YOUR_API_KEY"
url = "https://api.oilpriceapi.com/v1/prices/latest"
response = requests.get(
url,
params={"by_code": "JET_FUEL_USD"},
headers={"Authorization": f"Token {api_key}"}
)
data = response.json()
print(f"Jet Fuel: {data['data']['formatted']}")
JavaScript
const apiKey = 'YOUR_API_KEY';
const code = 'JET_FUEL_USD';
fetch(`https://api.oilpriceapi.com/v1/prices/latest?by_code=${code}`, {
headers: {
'Authorization': `Token ${apiKey}`
}
})
.then(res => res.json())
.then(data => {
console.log(`Jet Fuel: ${data.data.formatted}`);
});
Related Endpoints
- Get All Prices - Get all commodity prices in one call
- Historical Prices - Time-series data
- Commodities List - Browse all commodities