What does the full FMCSA carrier census look like, carrier by carrier, with authority and
What does the full FMCSA carrier census look like, carrier by carrier, with authority and safety context attached? Bulk analytics feed in USDOT order: legal/DBA name, operating status, authority statuses on file, active insurance filings, safety rating, SaferGrade score, 24-month SMS inspection/out-of-service/crash summaries, fleet size, and address — flat rows, cursor-paginated up to 1000/page, filterable by state, minimum fleet size, or census add date.
25000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-05
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "25000000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "25000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"added_since": "2026-06-01",
"min_power_units": 10,
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"basis": "FMCSA Company Census in USDOT order with authority, insurance, score, and SMS summaries joined per carrier",
"feed": "carrier-analytics",
"page": {
"has_more": true,
"limit": 500,
"next_cursor": "eyJ1IjozMDAwMDB9",
"returned": 500
},
"query": {
"added_since": "all",
"min_power_units": 0,
"state": "all"
},
"rows": [
{
"active_authorities": 1,
"add_date": "2000-03-20",
"as_published_date": "2026-07-18",
"authorities_on_file": 1,
"authority_statuses": [
"Common:Active"
],
"bus_units": 0,
"carrier_operation": "A",
"crashes_24mo": 41,
"dba_name": null,
"driver_oos_total_24mo": 9,
"entity_type": "CARRIER",
"fatalities_24mo": 1,
"hm_ind": "N",
"injuries_24mo": 12,
"inspections_24mo": 412,
"insurance_active_filings": 1,
"legal_name": "TYSON FOODS INC",
"mc_number": "150096",
"mcs150_date": null,
"operating_status": "A",
"phy_city": "SPRINGDALE",
"phy_country": "US",
"phy_state": "AR",
"phy_street": "2200 W DON TYSON PKWY",
"phy_zip": "72762",
"power_units": 3009,
"prior_revoke_flag": "N",
"safergrade_grade": "B",
"safergrade_score": 87,
"safety_rating": "S",
"safety_rating_date": "2010-03-02",
"total_cdl": 3350,
"total_drivers": 3400,
"truck_units": 2977,
"usdot": 299087,
"vehicle_oos_total_24mo": 61,
"violations_24mo": 388
}
]
},
"type": "json"
}
},
"routeTemplate": "/v1/feeds/carrier-analytics",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"added_since": {
"description": "Only carriers added to the census on or after this date (YYYY-MM-DD) — the census carries no per-record modified date.",
"examples": [
"2026-06-01"
],
"type": "string"
},
"cursor": {
"description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
"examples": [
"eyJ1IjoxMDA1MDB9"
],
"type": "string"
},
"limit": {
"description": "Rows per page (default 500, cap 1000).",
"examples": [
500
],
"type": "integer"
},
"min_power_units": {
"description": "Minimum fleet size (power units).",
"examples": [
10
],
"type": "integer"
},
"state": {
"description": "Physical-address state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/feeds/carrier-analytics" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.govparse.io/v1/feeds/carrier-analytics");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.govparse.io/v1/feeds/carrier-analytics")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14602.json, and this resource appears in /discovery/resources and /discovery/search.