# OSHA Severe Injury Reports Search API

> OSHA Severe Injury Reports Search API is a paid API for AI agents from safetyincidents.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search and filter federal OSHA Severe Injury Reports (hospitalizations, amputations, eye losses) by state, NAICS sector, employer, and date.

## Facts

- Endpoint: GET https://safetyincidents.org/api/x402/severe-injuries
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/osha-severe-injury-reports-search-api-b8c86c18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K8rDoKqpWvLrU9a0iIzfA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability osha-severe-injury-reports-search-api-b8c86c18
```

Example prompt: Pull the latest OSHA severe injury reports for employers in California's food manufacturing sector (NAICS 311) since January 1, 2024 — I want to see hospitalizations and amputations.

## When to prefer this

Use this endpoint when you need to search across multiple OSHA severe injury records with filtering — by state, industry sector, employer name, or date range. Prefer this over the single-record endpoint when doing research, trend analysis, compliance checks, or building a list of incidents. Best for agents investigating workplace safety histories for a company, industry, or region.

## Known failure modes

- Invalid state code returns empty result set or 400 error
- Malformed NAICS prefix may return no results
- Invalid date format for 'since' parameter causes rejection
- Page number beyond available results returns empty rows array
- Payment not processed (x402) results in 402 Payment Required response

## How this service works

Federal OSHA Severe Injury Reports (hospitalizations, amputations, eye losses), newest first. Filter by state, NAICS sector, employer name, and event date.

## Output

A paginated list of up to 25 OSHA severe injury records per page, each containing: unique record ID, employer name and address (city, state, zip, lat/lng), event date, NAICS code, injury flags (hospitalized, amputation, loss_of_eye), part of body affected, injury source, nature of injury, a narrative description of the incident, event type, and a link to the human-readable OSHA page for that record.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "page": {
       "type": "string",
       "description": "1-based page number; 25 rows per page"
      },
      "naics": {
       "type": "string",
       "description": "2–6 digit NAICS sector code prefix"
      },
      "since": {
       "type": "string",
       "description": "lower bound on event date, YYYY-MM-DD"
      },
      "state": {
       "type": "string",
       "description": "USPS 2-letter code or full state name"
      },
      "employer": {
       "type": "string",
       "description": "employer name or narrative keyword (full-text)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "rows": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": "string"
         },
         "zip": {
          "type": "string"
         },
         "city": {
          "type": "string"
         },
         "naics": {
          "type": "string"
         },
         "state": {
          "type": "string"
         },
         "address": {
          "type": "string"
         },
         "employer": {
          "type": "string"
         },
         "latitude": {
          "type": "number"
         },
         "longitude": {
          "type": "number"
         },
         "narrative": {
          "type": "string"
         },
         "amputation": {
          "type": "boolean"
         },
         "event_date": {
          "type": "string"
         },
         "event_type": {
          "type": "string"
         },
         "human_page": {
          "type": "string"
         },
         "loss_of_eye": {
          "type": "boolean"
         },
         "hospitalized": {
          "type": "boolean"
         },
         "part_of_body": {
          "type": "string"
         },
         "injury_source": {
          "type": "string"
         },
         "
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "page": 1,
  "rows": [
   {
    "id": "123456.015",
    "city": "Houston",
    "naics": "311",
    "state": "TX",
    "employer": "Example Corp",
    "event_date": "2025-06-01",
    "hospitalized": true
   }
  ],
  "page_size": 25,
  "total_matches": 128
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/osha-severe-injury-reports-search-api-b8c86c18/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from safetyincidents.org](https://www.zero.xyz/host/safetyincidents.org/llms.txt)
