Diesel Prices in Fort Worth, TX

Texas state average:

$5.013

per gallon

Texas State Average

5.013

per gallon

Coverage

State-level average

We do not publish station-level prices for Fort Worth.

Get Fort Worth Diesel Prices via API

from oilpriceapi import OilPriceAPI

client = OilPriceAPI(api_key="YOUR_API_KEY")

# Get cheapest diesel in Fort Worth
stations = client.diesel_prices.get_stations(
    lat=32.7555,
    lng=-97.3308,
    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 Fort Worth: " + 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 Fort Worth?

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

What's the average diesel price in Fort Worth?

We do not publish a Fort Worth-specific average. The Texas state retail diesel average is $5.013/gal.

Need Fort Worth Diesel Data in Your App?

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

Get Free API Key →