Skip to main content
FedEx Freight (SCAC: FXFE) hosts its LTL fuel surcharge page behind Cloudflare’s anti-bot protections. Direct httpx requests and residential proxies are rejected before the origin is reached. NexusFeed bypasses the block by routing every FedEx extraction through ScraperAPI’s render API in ultra_premium mode with country_code=us, which presents the request as a residential browser session and loads the page successfully.

Carrier overview

FieldValue
SCAC codeFXFE
Full nameFedEx Freight
HeadquartersMemphis, TN
CoverageNational
DOE diesel priceNo — FedEx Freight does not publish DOE diesel on its tariff page
Historical weeks availableCurrent week only
Extraction methodscraper_api
Cache TTL7 days
Scraping costHigher than other carriers due to ScraperAPI ultra_premium + render credits

Why the render API

FedEx’s fuel surcharge page is served with Cloudflare’s JavaScript challenge. NexusFeed attempted:
  • Direct httpx → blocked
  • Residential proxy → blocked
  • Standard ScraperAPI render → partial response, HTML not hydrated
  • ultra_premium + render + country_code=us → success
The last configuration reliably returns the fully rendered HTML. Every FedEx call burns more ScraperAPI credits than, say, ODFL or Averitt, which is part of why the LTL product is priced as a flat $0.03 per request across all carriers — FedEx requests are subsidized by cheaper carriers.

Example request

curl "https://api.nexusfeed.dev/v1/ltl/fuel-surcharge?carriers=FEDEX&weeks=1" \
  -H "X-API-Key: YOUR_KEY"

Example response

{
  "carrier": "FEDEX",
  "weeks": [
    {
      "effective_date": "2026-04-07",
      "fuel_surcharge_pct": 44.2,
      "doe_diesel_price_usd": null
    }
  ],
  "_verifiability": {
    "source_timestamp": "2026-04-10T14:22:11Z",
    "extraction_confidence": 1.0,
    "raw_data_evidence_url": "https://www.fedex.com/en-us/shipping/freight/fuel-surcharge.html",
    "extraction_method": "scraper_api",
    "data_freshness_ttl_seconds": 604800
  }
}
FedEx’s doe_diesel_price_usd is always null. The upstream tariff page publishes the surcharge percentage and effective date, but does not disclose the DOE #2 diesel trigger. Confidence is scored against effective_date and fuel_surcharge_pct only.

Use cases

  • Auditing FedEx Freight LTL invoices for the current week.
  • Quoting shipments moving on FedEx Freight where a live surcharge is required.
  • Including FedEx in multi-carrier carrier selection for lanes where it is a realistic option.