> ## 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.

# TForce Freight Fuel Surcharge API

> TForce Freight LTL fuel surcharge rates — current week only, extracted from the carrier's public tariff page.

TForce Freight (SCAC: **TFIN**) is the former UPS Freight business, acquired by TFI International in 2021. It publishes the current week's fuel surcharge on its public tariff page, but does not expose historical weeks or the DOE diesel price that triggered the rate. NexusFeed parses the current rate with Playwright DOM and returns it with reduced required fields to reflect the upstream data gap.

## Carrier overview

| Field                          | Value                                                                  |
| ------------------------------ | ---------------------------------------------------------------------- |
| **SCAC code**                  | TFIN                                                                   |
| **Full name**                  | TForce Freight                                                         |
| **Headquarters**               | Richmond, VA                                                           |
| **Coverage**                   | National                                                               |
| **DOE diesel price**           | **No** — upstream tariff page does not publish DOE diesel              |
| **Historical weeks available** | **Current week only** — requesting `weeks > 1` returns a single record |
| **Extraction method**          | `playwright_dom`                                                       |
| **Cache TTL**                  | 7 days                                                                 |

## Example request

```bash theme={null}
curl "https://api.nexusfeed.dev/v1/ltl/fuel-surcharge?carriers=TFORCE&weeks=1" \
  -H "X-API-Key: YOUR_KEY"
```

## Example response

```json theme={null}
{
  "carrier": "TFORCE",
  "weeks": [
    {
      "effective_date": "2026-04-07",
      "fuel_surcharge_pct": 42.9,
      "doe_diesel_price_usd": null
    }
  ],
  "_verifiability": {
    "source_timestamp": "2026-04-10T14:22:11Z",
    "extraction_confidence": 1.0,
    "raw_data_evidence_url": "https://www.tforcefreight.com/ltl/apps/Resources/fueltable",
    "extraction_method": "playwright_dom",
    "data_freshness_ttl_seconds": 604800
  }
}
```

<Warning>
  TForce does not publish historical fuel surcharges or DOE diesel on its public tariff. If you need trend data or an audit against a past invoice with a different rate, you must either (a) compare against a cached NexusFeed response from the relevant week or (b) use a carrier that exposes history such as [ODFL](/carriers/odfl), [Estes](/carriers/estes), or [R+L](/carriers/rl-carriers).
</Warning>

## Use cases

* Quoting shipments on TForce for the current week.
* Verifying the current-week TForce rate on a new invoice.
* Cross-checking TForce against other national LTL carriers when evaluating a lane.
