Look up U
Look up U.S. OSHA workplace inspections by establishment or company name. Use establishment, state, start_date, end_date, violations_only, and limit. Receive up to 20 JSON records with activity_id, date_opened, report_id, state, inspection_type, scope, SIC, NAICS, violation_count, establishment_name, and official_url.
20000 (raw units)
price
4
calls / 30d
3
unique payers
2026-08-30
updated
Provider
osha-search.krimskrams.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x276efA09388fB1578A6c415B8F90D26fdfCe0CF2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"establishment": "Amazon",
"limit": 10,
"state": "WA",
"violations_only": true
},
"type": "http"
},
"output": {
"example": {
"result_count": 1,
"results": [
{
"activity_id": "1885682.015",
"date_opened": "2026-04-03",
"inspection_type": "Referral",
"naics": "454111",
"state": "WA"
}
],
"source": "OSHA",
"source_hit_count": 12
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"description": "Validated parameters for both payment routes.",
"properties": {
"end_date": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"establishment": {
"maxLength": 60,
"minLength": 2,
"title": "Establishment",
"type": "string"
},
"limit": {
"default": 20,
"maximum": 20,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"start_date": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
},
"state": {
"default": "all",
"pattern": "^(all|[A-Za-z]{2})$",
"title": "State",
"type": "string"
},
"violations_only": {
"default": false,
"title": "Violations Only",
"type": "boolean"
}
},
"required": [
"establishment"
],
"title": "SearchParams",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"end_date": {
"format": "date",
"title": "End Date",
"type": "string"
},
"establishment": {
"title": "Establishment",
"type": "string"
},
"result_count": {
"title": "Result Count",
"type": "integer"
},
"results": {
"items": {
"properties": {
"activity_id": {
"title": "Activity Id",
"type": "string"
},
"date_opened": {
"format": "date",
"title": "Date Opened",
"type": "string"
},
"establishment_name": {
"title": "Establishment Name",
"type": "string"
},
"inspection_type": {
"title": "Inspection Type",
"type": "string"
},
"naics": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Naics"
},
"official_url": {
"title": "Official Url",
"type": "string"
},
"report_id": {
"title": "Report Id",
"type": "string"
},
"scope": {
"title": "Scope",
"type": "string"
},
"sic": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sic"
},
"state": {
"title": "State",
"type": "string"
},
"violation_count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Violation Count"
}
},
"title": "Inspection",
"type": "object"
},
"title": "Results",
"type": "array"
},
"retrieved_at": {
"format": "date-time",
"title": "Retrieved At",
"type": "string"
},
"source": {
"default": "OSHA",
"title": "Source",
"type": "string"
},
"source_hit_count": {
"title": "Source Hit Count",
"type": "integer"
},
"source_url": {
"default": "https://www.osha.gov/ords/imis/establishment.search",
"title": "Source Url",
"type": "string"
},
"start_date": {
"format": "date",
"title": "Start Date",
"type": "string"
},
"state": {
"title": "State",
"type": "string"
},
"violations_only": {
"title": "Violations Only",
"type": "boolean"
}
},
"title": "InspectionSearchResponse",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://osha-search.krimskrams.xyz/v1/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://osha-search.krimskrams.xyz/v1/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://osha-search.krimskrams.xyz/v1/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/8435.json, and this resource appears in /discovery/resources and /discovery/search.