API V4 – Search by License Plate Number

The /v4/search/plate/ endpoint lets you load the list of carriers that have utilized vehicles with a particular license plate number.

While it is possible for different vehicles in different states to have the same license plate number, it is unlikely that they would both be commercial vehicles of the same type. This endpoint is useful as a backup to /v4/search/vin.

The key distinction between this endpoint and /v4/search/dot/ is that this endpoint returns a list of carriers, not an in-depth profile, even if only one carrier matches to the search phrase.

Notes on this endpoint:

  1. Authentication via header. To authenticate your API call, pass in your public API key with the X-Api-Key HTTP header.

HTTP Request

Method URL
GET https://api.brokercarrier.com/v4/search/plate

Required Parameters

Name Type Value(s)
plate string A complete and properly-formatted license plate number

Example Response

Request: https://api.brokercarrier.com/v4/search/plate?plate=Z074013

The example response shows the public overview data of carriers that have used the vehicle with license plate "Z074013" in the previous five years.

{
    "carriers": [
        {
            "dot_number": "1186933",
            "legal_name": "PETER TRUCKING LLC",
            "carrier_operation": "A",
            "phy_address": "118576 COUNTY RD A ATHENS, WI 54411",
            "mailing_address": "118576 COUNTY ROAD A ATHENS, WI 54411",
            "email": "tom@thepetercompanies.com",
            "phone": "(715) 257-7121",
            "active": "y",
            "onboarded": {
                "status": 0
            }
        },
        {
            "dot_number": "1249483",
            "legal_name": "MART TRANSPORT LLC",
            "carrier_operation": "A",
            "phy_address": "3145 NORTH BRONZEWOOD CIR ERDA, UT 84074",
            "mailing_address": "3145 NORTH BRONZEWOOD CIR ERDA, UT 84074",
            "email": "jackie@marttransport.com",
            "phone": "(435) 882-5096",
            "active": "y",
            "onboarded": {
                "status": 0
            }
        },
        {
            "dot_number": "2861217",
            "legal_name": "CACHE VALLEY TRANSPORT LLC",
            "carrier_operation": "A",
            "phy_address": "2665 W 4400 S WESTON, ID 83286",
            "mailing_address": "2665 W 4400 S WESTON, ID 83286",
            "email": "cachevalleytransport@gmail.com",
            "phone": "(801) 592-7600",
            "active": "y",
            "onboarded": {
                "status": 0,
                "ca_id": 0
            }
        },
        {
            "dot_number": "3030016",
            "legal_name": "TRACTION LOGISTICS MANAGEMENT LLC",
            "carrier_operation": "A",
            "phy_address": "8401 S HIWASSEE RD OKLAHOMA CITY, OK 73150",
            "mailing_address": "8401 S HIWASSEE RD OKLAHOMA CITY, OK 73150",
            "email": "leti@tractionlm.com",
            "phone": "(855) 777-9856",
            "active": "y",
            "onboarded": {
                "status": 0,
                "ca_id": 0
            }
        },
        {
            "dot_number": "3082561",
            "legal_name": "SALCIDO FARM INC",
            "carrier_operation": "A",
            "phy_address": "1773 E 1500 S GOODING, ID 83330-5008",
            "mailing_address": "1773 E 1500 S GOODING, ID 83330-5008",
            "email": "salcidofarm@gmail.com",
            "phone": "(208) 961-1108",
            "active": "y",
            "onboarded": {
                "status": 0
            }
        },
        {
            "dot_number": "3475683",
            "legal_name": "BOSS LEID TRUX LLC",
            "carrier_operation": "A",
            "phy_address": "135 S STATE STREET SUITE 8 LINDON, UT 84042-1129",
            "mailing_address": "135 S STATE ST SUITE 8 LINDON, UT 84042-1129",
            "email": "leidtruckerz@gmail.com",
            "phone": "(435) 862-5320",
            "active": "y",
            "onboarded": {
                "status": 0
            }
        },
        {
            "dot_number": "3575363",
            "legal_name": "USA TRANSPORTATION LLC",
            "carrier_operation": "A",
            "phy_address": "125 W 500 S JEROME, ID 83338",
            "mailing_address": "125 W 500 S JEROME, ID 83338",
            "email": "jose@gousatransportation.com",
            "phone": "(208) 329-9794",
            "active": "y",
            "onboarded": {
                "status": 0
            }
        },
        {
            "dot_number": "692560",
            "legal_name": "KENWORTH SALES CO INC",
            "carrier_operation": "A",
            "phy_address": "2125 S CONSTITUTION BLVD WEST VALLEY CITY, UT 84119",
            "mailing_address": "2125 S CONSTITUTION BLVD WEST VALLEY CITY, UT 84119",
            "email": "akierstead@kwsco.com",
            "phone": "(801) 412-4322",
            "active": "y",
            "onboarded": {
                "status": 0
            }
        }
    ],
    "inspections": {
        "count": 12,
        "latest": "2023-11-09"
    }
}