# Firearms & Explosives Regulatory Compliance Brief

> Firearms & Explosives Regulatory Compliance Brief is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns an LLM-generated digest of the most important recent firearms and explosives regulatory changes, highlighting deadlines and actionable rules within a configurable time window.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-firearms/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/firearms-explosives-regulatory-compliance-brief-67a7059a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4woOqysD_98s5arp5CspH

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 firearms-explosives-regulatory-compliance-brief-67a7059a
```

Example prompt: Give me a quick LLM-written compliance brief on the firearms and explosives regulations that have come out since January 1st — especially anything with upcoming deadlines.

## When to prefer this

Use this endpoint when you need a human-readable, deadline-aware narrative summary of firearms and explosives compliance obligations, rather than raw regulatory data. Ideal for compliance officers, legal teams, or agents that need to surface actionable rule changes without parsing raw regulatory feeds. Prefer this over general legal research tools when the domain is specifically firearms/explosives federal regulation.

## Known failure modes

- No regulatory changes in window — brief may indicate no material changes found
- Invalid 'since' date-time format returns a 400 validation error
- Payment not provided or insufficient — returns 402 Payment Required
- Service unavailability on Railway infrastructure returns 5xx errors
- LLM generation failure may fall back to template-based output

## How this service works

LLM-written compliance digest of the firearms & explosives rules in the window that actually matter (firearm, explosive, ammunition, ffl, silencer) — issuing agency named, deadlines called out.

## Output

Returns a JSON object containing a 'brief' field with a concise LLM-written narrative summarizing the most important firearms and explosives regulatory changes in the specified window, a 'generatedBy' field indicating whether an LLM or template produced it, and 'basedOnChanges' indicating how many underlying regulatory changes were considered.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/firearms-explosives-regulatory-compliance-brief-67a7059a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
