Diesel Prices in Spokane, WA

Washington state average:

$6.151

per gallon

Washington State Average

6.151

per gallon

Coverage

State-level average

We do not publish station-level prices for Spokane.

Get Spokane Diesel Prices via API

from oilpriceapi import OilPriceAPI

client = OilPriceAPI(api_key="YOUR_API_KEY")

# Get cheapest diesel in Spokane
stations = client.diesel_prices.get_stations(
    lat=47.6588,
    lng=-117.426,
    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 Spokane: " + 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 Spokane?

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

What's the average diesel price in Spokane?

We do not publish a Spokane-specific average. The Washington state retail diesel average is $6.151/gal.

Need Spokane Diesel Data in Your App?

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

Get Free API Key →