x402 List

x402 Protocol Service Directory

Safety Incidents — OSHA Severe-Injury API

Data PAYMENT-READY

payment-ready until 2026-08-20

Federal OSHA severe-injury records, single incident lookups, and employer aggregate safety totals. Cleaned and entity-resolved. Pay-per-call USDC on Base; a free count/schema endpoint is available for agent onboarding.

Pay from $0.005 to $0.02 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

first settlement 2026-07-21 · $6.17 all-time · settled via coinbase

BASE URL https://safetyincidents.org WEBSITE https://safetyincidents.org ENDPOINTS 3 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-21 MONITORED SINCE 2026-07-21

ASSESSMENT

updated 4h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 99.7%
uptime 24h
100%
uptime 7d
100%
uptime 30d
99.7%
uptime 90d
99.7%
response p95
493ms
avg response
341ms
total checks
2,066

Measured on the unpaid 402 handshake, not the paid call. A service can 402 correctly and still fail after payment.

compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.005 to $0.02 (p35 in Data)
price (min)
$0.005
price (max)
$0.02
category percentile (min)
p35 in Data
category percentile (max)
p40 in Data
endpoints / prices
3 / 3
model
tiered
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
89d
registrar
NameCheap, Inc.
hosting
custom
domain created
2026-05-14

Identity facts, not a risk score.

traction $6.17 30d · 6 buyers · top buyer 98%
volume 30d
$6.17
buyers 30d
6
settlements 30d
22
first settlement
2026-07-21
last settlement
2026-08-13
top buyer share
98% of 30d volume
trend 7d vs 30d
4.22x the 30d daily rate
networks
eip155:8453
volume all-time
$6.17
settlements all-time
22
median settlement 30d
$0.01
max settlement 30d
$1.00
settled via
coinbase ($6.17, 22 tx)

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

No AI synthesis has been produced for this service yet.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET 402 CHANNEL
GET /api/x402/employer/walt-disney-parks-and-resorts-us-inc $0.02 Base USDC header
GET /api/x402/incident/20251010874 $0.005 Base USDC header
GET /api/x402/severe-injuries $0.01 Base USDC header
3 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET /api/x402/employer/walt-disney-parks-and-resorts-us-inc returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://safetyincidents.org/api/x402/employer/walt-disney-parks-and-resorts-us-inc'
// 402 response (captured by monitor) · 3 payloads · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x9F6C07e3f772eC49435579ec34E13141a94b9958",
        "amount": "10000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://safetyincidents.org/api/x402/severe-injuries",
      "tags": [
        "osha",
        "safety",
        "injuries",
        "workplace",
        "government-data"
      ],
      "mimeType": "application/json",
      "description": "Federal OSHA Severe Injury Reports (hospitalizations, amputations, eye losses), newest first. Filter by state, NAICS sector, employer name, and event date.",
      "serviceName": "Safety Incidents (OSHA)"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "naics": "31",
              "state": "TX"
            }
          },
          "output": {
            "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
            }
          }
        },
        "schema": {
          "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"
                          },
                          "nature_of_injury": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x9F6C07e3f772eC49435579ec34E13141a94b9958",
        "amount": "5000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://safetyincidents.org/api/x402/incident/20251010874",
      "tags": [
        "osha",
        "safety",
        "injuries",
        "workplace",
        "government-data"
      ],
      "mimeType": "application/json",
      "description": "One federal OSHA severe-injury record: facts, injury classification, narrative, employer link.",
      "serviceName": "Safety Incidents (OSHA)"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "pathParams": {
              "id": "20251010874"
            }
          },
          "output": {
            "type": "json",
            "example": {
              "incident": {
                "id": "123456.015",
                "employer": "Example Corp"
              }
            }
          }
        },
        "schema": {
          "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"
                },
                "pathParams": {
                  "type": "object",
                  "required": [
                    "id"
                  ],
                  "properties": {
                    "id": {
                      "type": "string"
                    }
                  }
                },
                "queryParams": {
                  "type": "object",
                  "properties": {}
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "incident": {
                      "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"
                        },
                        "nature_of_injury": {
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "routeTemplate": "/api/x402/incident/:id"
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x9F6C07e3f772eC49435579ec34E13141a94b9958",
        "amount": "20000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://safetyincidents.org/api/x402/employer/walt-disney-parks-and-resorts-us-inc",
      "tags": [
        "osha",
        "safety",
        "employer",
        "compliance",
        "government-data"
      ],
      "mimeType": "application/json",
      "description": "Employer identity plus aggregate safety totals across SIR, ITA 300/301, and inspections.",
      "serviceName": "Safety Incidents (OSHA)"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "pathParams": {
              "slug": "walt-disney-parks-and-resorts-us-inc"
            }
          },
          "output": {
            "type": "json",
            "example": {
              "employer": {
                "name": "Example Corp",
                "slug": "example-corp",
                "total_records": 7
              }
            }
          }
        },
        "schema": {
          "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"
                },
                "pathParams": {
                  "type": "object",
                  "required": [
                    "slug"
                  ],
                  "properties": {
                    "slug": {
                      "type": "string"
                    }
                  }
                },
                "queryParams": {
                  "type": "object",
                  "properties": {}
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "employer": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "routeTemplate": "/api/x402/employer/:slug"
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts use the 7d selector; each series spans only the dates it has data for. Every series is also served as JSON at /api/v1/services/safety-incidents-osha-severe-injury-api/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
08-07 · uptime 100.0% · 277ms avg08-08 · uptime 100.0% · 363ms avg08-09 · uptime 100.0% · 396ms avg08-10 · uptime 100.0% · 327ms avg08-11 · uptime 100.0% · 245ms avg08-12 · uptime 100.0% · 272ms avg08-13 · uptime 100.0% · 250ms avg08-0708-13
7d UPTIME 100%
RESPONSE TIME
08-07 · 277ms avg08-07 · 277ms avg08-08 · 363ms avg08-08 · 363ms avg08-09 · 396ms avg08-09 · 396ms avg08-10 · 327ms avg08-10 · 327ms avg08-11 · 245ms avg08-11 · 245ms avg08-12 · 272ms avg08-12 · 272ms avg08-13 · 250ms avg08-13 · 250ms avg08-0708-13
AVG RESP 340ms
PRICE (captured 402, USD)
08-06 · $0.0108-13 · $0.01$0.0108-0608-13

Median across 3 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
08-06 uptime: 99.5% compliance: 100% checks08-07 uptime: 99.5% compliance: 100% checks08-08 uptime: 99.6% compliance: 100% checks08-09 uptime: 99.6% compliance: 100% checks08-10 uptime: 99.6% compliance: 100% checks08-11 uptime: 99.6% compliance: 100% checks08-12 uptime: 99.6% compliance: 100% checks08-13 uptime: 99.7% compliance: 100% checksuptimecompliance08-0608-13

checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression

PILLARS OVER TIME (measured)

Measured site and economics pillars from the assessment history, so the latest value shown elsewhere on this page reads as a point on a trend rather than a permanent state.

VOLUME (on-chain settlement, USD)
08-10 · $508-12 · $0.0108-13 · $0.02peak $508-1008-13
DISTINCT BUYERS
08-10 · 1 buyer08-12 · 1 buyer08-13 · 2 buyerspeak 2 buyers08-1008-13

COMPLIANCE

14/14 checks pass · grade A

last 402 captured 2026-07-21 · last up 2026-08-13

  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (18) live · click to expand
TIME STATUS RESP CAUSE
● OK 209ms
● OK 214ms
● OK 236ms
● OK 198ms
● SLOW 687ms
● OK 154ms
● OK 162ms
● OK 127ms
● OK 200ms
● OK 131ms
● OK 265ms
● OK 247ms
● OK 152ms
● OK 261ms
● OK 288ms
● OK 158ms
● OK 167ms
● OK 198ms

EMBED THIS BADGE

Show that Safety Incidents — OSHA Severe-Injury API is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

Safety Incidents — OSHA Severe-Injury API listed on x402-list
status
Safety Incidents — OSHA Severe-Injury API uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/safety-incidents-osha-severe-injury-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/safety-incidents-osha-severe-injury-api.svg" alt="Safety Incidents — OSHA Severe-Injury API listed on x402-list" height="28">
</a>
// Markdown
[![Safety Incidents — OSHA Severe-Injury API on x402-list](https://x402-list.com/badge/safety-incidents-osha-severe-injury-api.svg)](https://x402-list.com/services/safety-incidents-osha-severe-injury-api?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/safety-incidents-osha-severe-injury-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/safety-incidents-osha-severe-injury-api.svg?data=uptime" alt="Safety Incidents — OSHA Severe-Injury API uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]

Earn the verified tier: x402list pays a real call to this endpoint and, if it delivers, the service is delivery-verified. The fee covers the cost of the probe, not the badge; there is no refund if the call does not deliver. Agent and API only, no in-browser signing. See /api.

[ verify this service ($0.25) ]

To request delisting, email info@x402-list.com or update your listing at /services/safety-incidents-osha-severe-injury-api/update.