Skip to main content
Estes Express Lines (SCAC: EXLA) publishes a long historical fuel surcharge table on its public tariff page. NexusFeed parses the table in headless Chromium and returns the rates newest-first. Estes is one of the deeper historical sources in the API — the upstream table routinely exposes five or more years of weekly data.

Carrier overview

FieldValue
SCAC codeEXLA
Full nameEstes Express Lines
HeadquartersRichmond, VA
CoverageNational
DOE diesel priceYes
Historical weeks available5+ years (API caps at 26 weeks per request; paginate for older data)
Extraction methodplaywright_dom
Cache TTL7 days

Example request

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

Example response

{
  "carrier": "ESTES",
  "weeks": [
    {"effective_date": "2026-04-07", "fuel_surcharge_pct": 41.5, "doe_diesel_price_usd": 3.812}
  ],
  "_verifiability": {
    "source_timestamp": "2026-04-10T14:22:11Z",
    "extraction_confidence": 1.0,
    "raw_data_evidence_url": "https://www.estes-express.com/resources/fuel-surcharges",
    "extraction_method": "playwright_dom",
    "data_freshness_ttl_seconds": 604800
  }
}

Use cases

  • Long-horizon trend analysis (12-26 weeks) for RFP preparation.
  • Auditing Estes LTL invoices against the posted tariff schedule.
  • Pairing Estes rates with ODFL and Saia for cost benchmarking on the southeastern lanes.