Which employers appear in federal enforcement and compliance records? Search 3
Which employers appear in federal enforcement and compliance records? Search 3.7M resolved employer entities by name (suffix/punctuation-insensitive, trigram-indexed), state, linked source (whd, osha, echo, oflc, fmcsa, leie, sam_exclusions), NAICS prefix, or source-count range. Returns entity IDs for the business360 dossier plus identity, address, and source/record counts. total_matched caps at 1000 — narrow when capped. Not a consumer report; no FCRA use.
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": {
"name": "swift transportation",
"source": "whd,osha",
"state": "AZ"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"addr_city": "PHOENIX",
"canonical_dba": null,
"canonical_name": "SWIFT TRANSPORTATION CO OF ARIZONA LLC",
"entity_id": "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b",
"first_seen": "2015-04-20",
"last_seen": "2026-07-12",
"naics": "484121",
"norm_name": "SWIFT TRANSPORTATION CO OF ARIZONA",
"record_count": 188,
"source_count": 4,
"state": "AZ"
}
],
"total_matched": 7
},
"type": "json"
}
},
"routeTemplate": "/v1/companies/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"naics": {
"description": "NAICS code prefix(es), CSV. Example: '3116' covers animal processing.",
"examples": [
"3116"
],
"type": "string"
},
"name": {
"description": "Company name fragment — normalized before matching ('Swift Transportation Co. of Arizona, LLC' → 'SWIFT TRANSPORTATION'). Example: 'swift transportation'.",
"examples": [
"swift transportation"
],
"type": "string"
},
"offset": {
"description": "Rows to skip, for paging.",
"examples": [
0
],
"type": "integer"
},
"sort": {
"description": "field:direction — source_count | record_count | last_seen. Default 'source_count:desc'.",
"examples": [
"record_count:desc"
],
"type": "string"
},
"source": {
"description": "Only entities with linked records in these sources (CSV): whd | osha | echo | oflc | fmcsa | leie | sam_exclusions.",
"examples": [
"whd,osha"
],
"type": "string"
},
"source_count_max": {
"description": "Maximum number of distinct federal sources the entity appears in.",
"examples": [
7
],
"type": "integer"
},
"source_count_min": {
"description": "Minimum number of distinct federal sources the entity appears in (1-7).",
"examples": [
2
],
"type": "integer"
},
"state": {
"description": "Entity state code(s), CSV. Example: 'AZ'.",
"examples": [
"AZ"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/companies/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/companies/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/companies/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/14603.json, and this resource appears in /discovery/resources and /discovery/search.