# Safety Incidents OSHA Employer Lookup

> Safety Incidents OSHA Employer Lookup is a paid API for AI agents from safetyincidents.org, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Retrieves OSHA safety records for a specific employer by slug, covering severe injuries, Form 300/301 filings, inspections, and accident investigations.

## Facts

- Endpoint: GET https://safetyincidents.org/api/x402/employer/walt-disney-parks-and-resorts-us-inc
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/safety-incidents-osha-employer-lookup-b9df254f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yU8F6f21W60UlmNynhj5q

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 safety-incidents-osha-employer-lookup-b9df254f
```

Example prompt: Can you pull up the OSHA safety record for Walt Disney Parks and Resorts US Inc — I want to see their total number of reported incidents, inspections, and injuries across all federal datasets.

## When to prefer this

Use this endpoint when you need a quick aggregate safety profile for a specific known employer by name/slug, especially when you already know the employer identifier. Prefer this over broader search endpoints when doing due diligence on a single company. This endpoint is ideal when you need a fast summary count across all OSHA datasets rather than drilling into individual incident records.

## Known failure modes

- Employer slug not found — returns empty or null result if the employer has no OSHA records or the slug is incorrect
- Misspelled or non-canonical slug format — endpoint is slug-based so incorrect formatting returns no data
- Employer exists but has zero records — response may return total_records: 0
- Payment failure — x402 protocol payment of $0.02 USDC not completed blocks the response
- Rate limiting or network timeout for high-frequency queries

## How this service works

Four federal OSHA datasets in one searchable archive: Severe Injury Reports, Form 300/301 injury filings, OSHA inspections, and accident investigations. Look up an employer&#39;s safety record by name, hazard, equipment, body part, or industry.

## Output

Returns a JSON object containing the employer's canonical name, URL slug, and aggregate total record count spanning all four federal OSHA datasets (Severe Injury Reports, Form 300/301 ITA filings, OSHA inspections, and accident investigations).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "employer": {
   "name": "Example Corp",
   "slug": "example-corp",
   "total_records": 7
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/safety-incidents-osha-employer-lookup-b9df254f/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)
