Diesel Prices in Oklahoma City, OK

Oklahoma state average:

$4.719

per gallon

Oklahoma State Average

4.719

per gallon

Coverage

State-level average

We do not publish station-level prices for Oklahoma City.

Get Oklahoma City Diesel Prices via API

from oilpriceapi import OilPriceAPI

client = OilPriceAPI(api_key="YOUR_API_KEY")

# Get cheapest diesel in Oklahoma City
stations = client.diesel_prices.get_stations(
    lat=35.4676,
    lng=-97.5164,
    radius=8047  # 5 miles
)

# Sort by price
stations_sorted = sorted(stations, key=lambda s: s.diesel_price)
cheapest = stations_sorted[0]

print(f"Cheapest in Oklahoma City: " + cheapest.name)
print(f"Price: $" + str(cheapest.diesel_price) + "/gal")
print(f"Address: " + cheapest.address)

Frequently Asked Questions

What is the cheapest diesel price in Oklahoma City?

Use our API to get real-time diesel prices for Oklahoma City.

What's the average diesel price in Oklahoma City?

We do not publish a Oklahoma City-specific average. The Oklahoma state retail diesel average is $4.719/gal.

Need Oklahoma City Diesel Data in Your App?

Real-time station-level prices for Oklahoma City and 130,000+ US stations

Get Free API Key →