FedEx Fuel Surcharge

Current Ground surcharge:

25.75%

effective July 27, 2026

3 service levels published — full table below.

Pulled from FedEx's published fuel surcharge page, retrieved August 4, 2026. Source: https://www.fedex.com/en-us/shipping/fuel-surcharge.html. Carrier names are used for identification only; OilPriceAPI is not affiliated with or endorsed by FedEx.

FedEx Fuel Surcharge by Service Level

Unlike LTL freight carriers, parcel carriers publish a separate fuel surcharge for each service level, each keyed to the fuel price index named in FedEx's published schedule — ground services track a diesel index, air and express services track a jet fuel index. The percentages below come straight from that schedule.

Service LevelSurcharge
Express (domestic)27.50%
Ground25.75%
Export & Import (international)38.75%

Every row comes from FedEx's published schedule via the API — request one level with ?service_level= or all of them at once.

FedEx Ground Fuel Surcharge — 12-Week Trend

Effective DateSurcharge
July 27, 202625.75%
July 20, 202625.25%
July 13, 202625.00%

Get the FedEx Fuel Surcharge via API

# All FedEx service levels, latest published rates
curl "https://api.oilpriceapi.com/v1/fuel-surcharge/parcel/fedex/latest" \
  -H "Authorization: Token YOUR_API_KEY"

# Python — one service level's weekly history
import requests

resp = requests.get(
    "https://api.oilpriceapi.com/v1/fuel-surcharge/parcel/fedex/history",
    params={"service_level": "ground"},
    headers={"Authorization": "Token YOUR_API_KEY"},
)
for week in resp.json()["data"]["history"]:
    print(week["effective_date"], week["surcharge_percent"])

Calculate Your Fuel Surcharge

Turn a published surcharge percentage into a per-shipment cost with our free calculator.

Open the Fuel Surcharge Calculator →