lookup_carrier
Verify a US commercial trucking carrier by USDOT number or legal/DBA name. Returns identity, fleet size, authority status, insurance, recent authority events, and red flags. Data sourced from the FMCSA SAFER census, donated to the TATTOO Foundation by Carso Cybernetics from the SuperTrucker platform.
Parameters2
| dot_number | any | optional | USDOT number. Provide either dot_number or name. |
| name | string | optional | Legal name or DBA name (case-insensitive substring match). Returns up to 10 matches. |
Raw schema
{
"type": "object",
"properties": {
"dot_number": {
"anyOf": [
{
"type": "integer",
"exclusiveMinimum": 0
},
{
"type": "string",
"pattern": "^\\d+$"
}
],
"description": "USDOT number. Provide either dot_number or name."
},
"name": {
"type": "string",
"minLength": 2,
"description": "Legal name or DBA name (case-insensitive substring match). Returns up to 10 matches."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}