Federal OSHA Severe Injury Reports (hospitalizations, amputations, eye losses), newest fir
Federal OSHA Severe Injury Reports (hospitalizations, amputations, eye losses), newest first. Filter by state, NAICS sector, employer name, and event date.
10000 (raw units)
price
7
calls / 30d
7
unique payers
2026-09-17
updated
Provider
safetyincidents.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9F6C07e3f772eC49435579ec34E13141a94b9958",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"naics": "31",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"page": 1,
"page_size": 25,
"rows": [
{
"city": "Houston",
"employer": "Example Corp",
"event_date": "2025-06-01",
"hospitalized": true,
"id": "123456.015",
"naics": "311",
"state": "TX"
}
],
"total_matches": 128
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"employer": {
"description": "employer name or narrative keyword (full-text)",
"type": "string"
},
"naics": {
"description": "2–6 digit NAICS sector code prefix",
"type": "string"
},
"page": {
"description": "1-based page number; 25 rows per page",
"type": "string"
},
"since": {
"description": "lower bound on event date, YYYY-MM-DD",
"type": "string"
},
"state": {
"description": "USPS 2-letter code or full state name",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"rows": {
"items": {
"properties": {
"address": {
"type": "string"
},
"amputation": {
"type": "boolean"
},
"city": {
"type": "string"
},
"employer": {
"type": "string"
},
"event_date": {
"type": "string"
},
"event_type": {
"type": "string"
},
"hospitalized": {
"type": "boolean"
},
"human_page": {
"type": "string"
},
"id": {
"type": "string"
},
"injury_source": {
"type": "string"
},
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
},
"loss_of_eye": {
"type": "boolean"
},
"naics": {
"type": "string"
},
"narrative": {
"type": "string"
},
"nature_of_injury": {
"type": "string"
},
"part_of_body": {
"type": "string"
},
"state": {
"type": "string"
},
"zip": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://safetyincidents.org/api/x402/severe-injuries" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://safetyincidents.org/api/x402/severe-injuries");
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://safetyincidents.org/api/x402/severe-injuries")
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/2185.json, and this resource appears in /discovery/resources and /discovery/search.