Old Dominion Freight Line (SCAC: ODFL) publishes its fuel surcharge schedule on a hidden JSON endpoint used by the carrier’s own web frontend. NexusFeed calls that endpoint directly and returns the current week’s rate, the DOE diesel price that triggered it, and up to 26 weeks of history. When the primary API path fails or returns low confidence, a Playwright fallback automatically parses ODFL’s public tariff table instead.Documentation Index
Fetch the complete documentation index at: https://docs.nexusfeed.dev/llms.txt
Use this file to discover all available pages before exploring further.
Carrier overview
| Field | Value |
|---|---|
| SCAC code | ODFL |
| Full name | Old Dominion Freight Line |
| Headquarters | Thomasville, NC |
| Coverage | National |
| DOE diesel price | Yes |
| Historical weeks available | Full history (bounded by weeks parameter, max 26) |
| Primary extraction method | api_mirror |
| Fallback extraction method | playwright_dom |
| Cache TTL | 7 days |
Why it’s reliable
ODFL’s primary path hitsapi.odfl.com/tools/fuel-history/v1.0/fuel-history.list, which returns a clean JSON array sorted newest-first. No authentication is required. When that endpoint is healthy, extraction_confidence returns 1.0 and extraction_method is api_mirror. If the API returns a non-2xx, a parse error, or a confidence below 1.0, the router automatically falls back to ODFL’s public tariff page (www.odfl.com/us/en/tools/fuel-surcharge-schedule.html) and parses the HTML table. The fallback still returns clean data but reports extraction_method: playwright_dom so you know which path ran.
Example request
Example response
Use cases
- Invoice audit: match your ODFL LTL freight invoices against the week’s published rate to catch billing errors.
- Quote assembly: include an accurate fuel surcharge line item when quoting shipments moving on ODFL.
- Trend analysis: pull 12-26 weeks of history to correlate fuel surcharges with DOE diesel movements.
- Carrier comparison: request ODFL alongside Saia, Estes, and XPO to compare week-over-week.
Compare with other carriers
Full list on the LTL Fuel Surcharge product page.