Which FMCSA-registered carriers match a name, state, entity type, fleet-size range, operat
Which FMCSA-registered carriers match a name, state, entity type, fleet-size range, operating status, or authority status? Trigram name search over 4.4M+ census records — find a carrier's USDOT number, shortlist carriers in a lane state, or screen brokers vs carriers. Up to 100 rows per call, largest fleets first; total_matched caps at 1000 (total_matched_capped=true means narrow your filters).
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-04
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": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"entity_type": "carrier",
"name": "knight transportation",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"dba_name": null,
"entity_type": "carrier",
"legal_name": "EXAMPLE FREIGHT LLC",
"operating_status": "A",
"phy_city": "DALLAS",
"phy_state": "TX",
"power_units": 120,
"total_drivers": 135,
"usdot": 2550754
}
],
"total_matched": 42
},
"type": "json"
}
},
"routeTemplate": "/v1/carriers/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"authority_status": {
"description": "Only carriers with an operating-authority record in this status: Active | Pending | Inactive | Withdrawn.",
"examples": [
"Active"
],
"type": "string"
},
"entity_type": {
"description": "carrier | broker | forwarder (CSV for multiple).",
"examples": [
"carrier"
],
"type": "string"
},
"limit": {
"description": "Max rows to return (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"name": {
"description": "Carrier legal or DBA name fragment, case-insensitive (trigram match). Example: 'knight transportation'.",
"examples": [
"knight transportation"
],
"type": "string"
},
"offset": {
"description": "Rows to skip, for paging.",
"examples": [
0
],
"type": "integer"
},
"operating_status": {
"description": "A (active) | I (inactive) | P (pending), CSV for multiple.",
"examples": [
"A"
],
"type": "string"
},
"power_units_max": {
"description": "Maximum fleet size in power units.",
"examples": [
500
],
"type": "integer"
},
"power_units_min": {
"description": "Minimum fleet size in power units.",
"examples": [
50
],
"type": "integer"
},
"sort": {
"description": "field:direction — power_units | total_drivers | usdot. Example: 'power_units:desc'.",
"examples": [
"power_units:desc"
],
"type": "string"
},
"state": {
"description": "Physical-address state code(s), CSV. Example: 'TX,OK'.",
"examples": [
"TX"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/carriers/search" # -> 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/carriers/search");
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/carriers/search")
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/14604.json, and this resource appears in /discovery/resources and /discovery/search.