Diesel Prices in Fargo, ND

North Dakota state average:

$4.591

per gallon

North Dakota State Average

4.591

per gallon

Coverage

State-level average

We do not publish station-level prices for Fargo.

Get Fargo Diesel Prices via API

from oilpriceapi import OilPriceAPI

client = OilPriceAPI(api_key="YOUR_API_KEY")

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

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

What's the average diesel price in Fargo?

We do not publish a Fargo-specific average. The North Dakota state retail diesel average is $4.591/gal.

Need Fargo Diesel Data in Your App?

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

Get Free API Key →