# Active Texas FMCSA Trucking Leads Scraper

**Use case:** 

Scrape active Texas FMCSA motor carrier leads with DOT numbers, phone, city, fleet size, drivers, and add dates.

## Input

```json
{
  "dotNumbers": [
    "284470"
  ],
  "companyNames": [],
  "states": [
    "TX"
  ],
  "cities": [],
  "onlyActive": true,
  "addedSince": "2024-01-01",
  "minPowerUnits": 1,
  "minDrivers": 0,
  "maxItems": 100,
  "pageSize": 100
}
```

## Output

```json
{
  "dotNumber": {
    "label": "DOT #"
  },
  "legalName": {
    "label": "Legal name"
  },
  "dbaName": {
    "label": "DBA"
  },
  "statusCode": {
    "label": "Status"
  },
  "phone": {
    "label": "Phone"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "powerUnits": {
    "label": "Power units"
  },
  "drivers": {
    "label": "Drivers"
  },
  "addDate": {
    "label": "Add date"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [FMCSA Motor Carrier Leads Scraper](https://apify.com/automation-lab/fmcsa-motor-carrier-leads-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/fmcsa-motor-carrier-leads-scraper) to learn more, explore other use cases, and run it yourself.