Skip to main content
ABF Freight (SCAC: ABFS) is a subsidiary of ArcBest and one of the more challenging LTL carriers to extract reliably. Its fuel surcharge page is served as an AngularJS application and its origin is periodically hostile to direct scraping. NexusFeed uses a two-strategy approach: a passthrough proxy primary path, falling back to a full ScraperAPI render when the primary fails.

Carrier overview

FieldValue
SCAC codeABFS
Full nameABF Freight (ArcBest)
HeadquartersFort Smith, AR
CoverageNational
DOE diesel priceNo — ABF does not publish DOE diesel on its surcharge page. The doe_diesel_price_usd field will be null.
Historical weeks availableFull history
Primary extraction methodPassthrough httpx with proxy header keep
Fallback extraction methodscraper_api_fallback (full render + AngularJS HTML parse)
Cache TTL7 days

Two-strategy extraction

1

Strategy A — passthrough proxy

The primary path sends an httpx GET to ABF’s public fuel surcharge page through a residential proxy with keep_headers=True, which preserves browser-like headers across the proxy hop. When ABF’s origin cooperates, this returns AngularJS HTML that NexusFeed parses directly.
2

Strategy B — ScraperAPI full render fallback

When the primary path fails (timeout, 403, empty response, or confidence below threshold), the router automatically re-runs the extraction through ScraperAPI’s full-render mode, which executes the AngularJS client-side and returns the hydrated HTML. The response reports extraction_method: scraper_api_fallback so you know the fallback ran.

Example request

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

Example response

{
  "carrier": "ABF",
  "weeks": [
    {
      "effective_date": "2026-04-07",
      "fuel_surcharge_pct": 43.8,
      "doe_diesel_price_usd": null
    }
  ],
  "_verifiability": {
    "source_timestamp": "2026-04-10T14:22:11Z",
    "extraction_confidence": 1.0,
    "raw_data_evidence_url": "https://arcb.com/tools/abf-fuel-surcharge",
    "extraction_method": "playwright_dom",
    "data_freshness_ttl_seconds": 604800
  }
}
ABF’s confidence ratio is calculated against effective_date and fuel_surcharge_pct only. doe_diesel_price_usd is not a required field because the upstream source does not publish it.

Use cases

  • Invoice audit against ABF’s published LTL rate (most common).
  • Procurement benchmarking — ABF is often bundled in RFPs alongside ODFL, Saia, and Estes.
  • Compliance use cases do not apply (ABF is not on any state-regulated tariff).