Company Census File
The Company Census File contains records for active entities registered with FMCSA. Active entities include those entities subject to the FMCSR, HMR, or intrastate non-Hazardous Material (HM) carriers. To identify each entity, FMCSA assigns a unique number to each entity record. This number is referred to as the USDOT number.
Each Census record contains entity identifying data, business operations data, equipment and driver data, and carrier review data.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"datahub-transportation-gov/company-census-file-az4n-8mr2\".\"company_census_file\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.