# Pipeline & Hazmat Transport Compliance Digest

> Pipeline & Hazmat Transport 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-13).

Returns an LLM-generated plain-English brief summarizing the most important pipeline and hazardous-materials transport regulatory changes from the Federal Register within a given time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-pipeline-hazmat/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/pipeline-hazmat-transport-compliance-digest-d428a2d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xlXEOx1HRBVhpSMIZsdYq

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 pipeline-hazmat-transport-compliance-digest-d428a2d2
```

Example prompt: Give me a plain-English compliance digest of the pipeline and hazmat transport rules from the Federal Register that have come out in the last 30 days, especially anything with upcoming deadlines.

## When to prefer this

Use this endpoint when you need a human-readable, LLM-synthesized summary of pipeline and hazmat transport compliance changes rather than raw rule data. Prefer this over the raw Federal Register rules endpoint when the user wants a narrative digest with deadlines called out, not a list of scored documents to parse manually.

## Known failure modes

- No relevant regulatory changes in the requested window — brief may be empty or minimal
- Invalid 'since' datetime format returns a validation error
- Payment not completed (x402 payment required) — returns 402 status
- LLM generation failure — may fall back to template-based generation
- Rate limiting or service unavailability on Railway hosting

## How this service works

LLM-written compliance digest of the pipelines & hazardous-materials transport rules in the window that actually matter (pipeline, hazardous material, hazmat, gas transmission, liquefied) — issuing agency named, deadlines called out.

## Output

A structured JSON object containing: a 'brief' field with an LLM-written plain-English summary of the most impactful pipeline and hazardous-materials transport regulatory changes; a 'generatedBy' field indicating whether it was LLM- or template-generated; and a 'basedOnChanges' integer showing how many Federal Register items were synthesized.

## 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/pipeline-hazmat-transport-compliance-digest-d428a2d2/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)
