# Load_truck_ratio DAT Freight Rates

**Use case:** 

Extract DAT Freight Rates data filtered by load_truck_ratio. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "maxItems": 10,
  "datasets": [
    "load_truck_ratio"
  ],
  "equipments": [
    "VAN",
    "FLATBED",
    "REEFER"
  ],
  "rateTypes": [
    "SHIPPER_TO_BROKER_SPOT",
    "BROKER_TO_CARRIER_SPOT",
    "CONTRACT"
  ],
  "countries": [
    "US",
    "CA"
  ],
  "periodTypes": [
    "Month",
    "Week"
  ],
  "states": []
}
```

## Output

```json
{
  "recordId": {
    "label": "Record ID"
  },
  "dataset": {
    "label": "Dataset"
  },
  "equipment": {
    "label": "Equipment"
  },
  "rateType": {
    "label": "Rate Type"
  },
  "country": {
    "label": "Country"
  },
  "stateCode": {
    "label": "State"
  },
  "periodType": {
    "label": "Period Type"
  },
  "periodStart": {
    "label": "Period Start"
  },
  "year": {
    "label": "Year"
  },
  "month": {
    "label": "Month"
  },
  "rateUsd": {
    "label": "Rate (USD/mi)",
    "format": "number"
  },
  "fuelSurchargePerTripUsd": {
    "label": "Fuel Surcharge (USD/trip)",
    "format": "number"
  },
  "loadCount": {
    "label": "Loads",
    "format": "number"
  },
  "truckCount": {
    "label": "Trucks",
    "format": "number"
  },
  "loadToTruckRatio": {
    "label": "Load/Truck Ratio",
    "format": "number"
  },
  "fuelPricePerGallonUsd": {
    "label": "Diesel (USD/gal)",
    "format": "number"
  },
  "metric": {
    "label": "Metric"
  },
  "weekOverWeekPct": {
    "label": "WoW %",
    "format": "number"
  },
  "monthOverMonthPct": {
    "label": "MoM %",
    "format": "number"
  },
  "yearOverYearPct": {
    "label": "YoY %",
    "format": "number"
  },
  "asOfDate": {
    "label": "As Of"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [DAT Freight Rates Scraper](https://apify.com/parseforge/dat-freight-rates-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/dat-freight-rates-scraper) to learn more, explore other use cases, and run it yourself.