Carriers
Core carrier records: DOT number, legal name, address, fleet size, cargo types, operation classification, and MCS-150 data.
Bulk Downloads
Cleaned, joined, and exported daily from the FMCSA SAFER dataset. Download as CSV, Parquet, or a single SQLite database.
Core carrier records: DOT number, legal name, address, fleet size, cargo types, operation classification, and MCS-150 data.
Crash and inspection statistics, OOS rates, and BASIC scores for each carrier.
Active insurance policies: BIPD, cargo, bond/trust filings with insurer names and coverage amounts.
All tables in a single SQLite file. Open with any SQLite client, DBeaver, or Datasette.
No download needed — query the Parquet files directly over HTTPS with DuckDB.
SELECT dot_number, legal_name, phy_state, total_power_units
FROM read_parquet('https://data.dotlookup.dev/carriers.parquet')
WHERE phy_state = 'TX' AND total_power_units > 100
ORDER BY total_power_units DESC
LIMIT 20; Automated ETL pipeline refreshes all datasets from the latest FMCSA SAFER snapshot every day. See current status.
Source data is published by the US government. No license restrictions — use it for anything.
Raw FMCSA tables are cleaned, deduplicated, and joined by DOT number into analysis-ready datasets.