# safetyincidents.org Feature Request Submission

> safetyincidents.org Feature Request Submission is a paid API for AI agents from safetyincidents.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Submit a plain-text feature request describing OSHA data or capability you wish safetyincidents.org had, gated by a $0.01 USDC spam-prevention fee.

## Facts

- Endpoint: GET https://safetyincidents.org/api/x402/feature-request
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/safetyincidents-org-feature-request-submission-8c97aea7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BDR9nTtIGAKaJcBQK1lIv

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 safetyincidents-org-feature-request-submission-8c97aea7
```

Example prompt: Submit a feature request to safetyincidents.org saying: 'I wish safetyincidents.org had a searchable timeline of OSHA citations and penalties by employer so I can track enforcement trends over time.'

## When to prefer this

Use this endpoint when you want to formally log a gap in safetyincidents.org's OSHA data coverage or request a new capability, and the $0.01 fee is acceptable as a spam gate. Prefer this over informal feedback when you want the request tracked with an ID and made publicly visible for others to upvote.

## Known failure modes

- Text too short (under 12 characters) — request rejected with validation error
- Text too long (over 1000 characters) — request rejected with validation error
- Payment not included or insufficient — 402 Payment Required response
- Duplicate or spam-like submission — may be deprioritized by human reviewer
- Network error or service unavailability — HTTP 5xx response

## How this service works

Tell safetyincidents.org which federal OSHA data or capability you wish existed. The cent is a spam gate, not a price: submissions are read by a human and the open list is free to browse.

## Output

Returns a JSON object confirming the request was stored, including the new feature request's integer ID (usable for upvoting at /api/x402/feature-request/{id}/upvote), sanitized request text as stored, current status (new/planned/shipped/declined), upvote count, and creation timestamp.

## 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",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "maxLength": 1000,
       "minLength": 12,
       "description": "The OSHA data or capability you wish safetyincidents.org had. Plain prose. Control characters are stripped and whitespace is collapsed before storage."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "stored",
      "feature_request"
     ],
     "properties": {
      "stored": {
       "type": "boolean"
      },
      "feature_request": {
       "type": "object",
       "required": [
        "id"
       ],
       "properties": {
        "id": {
         "type": "integer",
         "description": "the stored request's id; upvote it at /api/x402/feature-request/{id}/upvote"
        },
        "status": {
         "enum": [
          "new",
          "planned",
          "shipped",
          "declined"
         ],
         "type": "string"
        },
        "upvotes": {
         "type": "integer"
        },
        "created_at": {
         "type": "string"
        },
        "request_text": {
         "type": "string",
         "description": "the SANITIZED text as stored"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/safetyincidents-org-feature-request-submission-8c97aea7/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)
