# Search FMCSA carrier records by company name

**Use case:** 

Find official FMCSA carrier records matching United Parcel Service and return operating, authority, fleet, and safety summary fields.

## Input

```json
{
  "usdotNumbers": [
    "21800"
  ],
  "companyNames": [
    "United Parcel Service"
  ],
  "states": [],
  "activeOnly": false,
  "includeAuthority": true,
  "includeSafetySummary": true,
  "safetyLookbackMonths": 24,
  "maxItems": 5
}
```

## Output

```json
{
  "usdotNumber": {
    "label": "USDOT",
    "format": "string"
  },
  "legalName": {
    "label": "Legal name",
    "format": "string"
  },
  "dbaName": {
    "label": "DBA",
    "format": "string"
  },
  "operatingStatus": {
    "label": "Status",
    "format": "string"
  },
  "carrierOperation": {
    "label": "Operation",
    "format": "string"
  },
  "physicalAddress": {
    "label": "Physical address",
    "format": "object"
  },
  "powerUnits": {
    "label": "Power units",
    "format": "number"
  },
  "drivers": {
    "label": "Drivers",
    "format": "number"
  },
  "safetyRating": {
    "label": "Safety rating",
    "format": "string"
  },
  "authorities": {
    "label": "Authorities",
    "format": "array"
  },
  "safetySummary": {
    "label": "Safety summary",
    "format": "object"
  },
  "saferSnapshotUrl": {
    "label": "SAFER snapshot",
    "format": "string"
  }
}
```

## About this Actor

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