# EPA TSCA Industrial Chemicals Compliance Digest

> EPA TSCA Industrial Chemicals Compliance Digest 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-15).

Returns an LLM-generated compliance digest summarizing the most important TSCA (Toxic Substances Control Act) industrial chemical regulatory changes within a specified time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-epa-chemicals/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/epa-tsca-industrial-chemicals-compliance-digest-1b6188e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f0deharKSVNs_KBIIjAIj

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 epa-tsca-industrial-chemicals-compliance-digest-1b6188e1
```

Example prompt: Give me an LLM-written compliance digest of the TSCA industrial chemical rules that actually matter since January 1, 2025 — I want the key deadlines called out.

## When to prefer this

Use this endpoint when you need a concise, human-readable narrative summary of TSCA industrial chemical compliance obligations rather than raw Federal Register data. Ideal for compliance officers or AI agents that need a quick digest with deadlines called out, rather than a list of raw regulatory documents. Prefer this over raw rules endpoints when the consumer needs actionable prose rather than structured data.

## Known failure modes

- Invalid 'since' datetime format returns a 400 error
- No regulatory changes found in the window may return a sparse or minimal brief
- LLM generation failure may fall back to template-based output (generatedBy: 'template')
- Payment not completed returns 402 Payment Required
- Service unavailability returns 5xx errors

## How this service works

LLM-written compliance digest of the industrial chemicals under TSCA rules in the window that actually matter (tsca, chemical substance, significant new use, snur, toxic substances) — issuing agency named, deadlines called out.

## Output

Returns a JSON object with a 'brief' field containing an LLM-generated narrative summary of the most important TSCA industrial chemical regulatory changes in the window, a 'generatedBy' flag indicating whether it was LLM- or template-produced, and a 'basedOnChanges' integer showing how many underlying Federal Register changes were analyzed.

## 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/epa-tsca-industrial-chemicals-compliance-digest-1b6188e1/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)
