Look Up Carrier Identity
carrier_lookupLook up an FMCSA-registered motor carrier's identity by US DOT number: legal name, DBA, operating status, FMCSA safety rating, fleet size (power units, drivers), physical address, and registration dates.
Use this first when a booking/dispatch agent needs to confirm WHO a carrier is — that a DOT number is real, active, and matches the company name on a rate confirmation. It does not return risk indices (use carrier_score for those).
Returns JSON: { dot_number, legal_name, dba_name, status_code, safety_rating, power_units, total_drivers, phy_street, phy_city, phy_state, phy_zip, add_date, mcs150_date }.
Errors: 404 if the DOT is not in the FMCSA census (likely a typo or a fraudulent/never-registered carrier — treat as a red flag for booking).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dot_number | Yes | US DOT number of the carrier, digits only (e.g. "1234567") |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| phy_zip | No | ||
| add_date | No | Date added to the FMCSA census (YYYY-MM-DD) | |
| dba_name | No | Doing-business-as name, if any | |
| phy_city | No | ||
| phy_state | No | ||
| dot_number | Yes | US DOT number | |
| legal_name | No | Registered legal name | |
| phy_street | No | ||
| mcs150_date | No | Latest MCS-150 filing date (YYYY-MM-DD) | |
| power_units | No | Fleet size: number of power units | |
| status_code | No | FMCSA operating status code (e.g. "A" = active) | |
| safety_rating | No | FMCSA safety rating code (e.g. "S" = satisfactory) | |
| total_drivers | No | Total drivers reported |