Industrial Compliance
API 571 corrosion math, EPA TRI, OSHA PSM, facility risk scoring, chemical hazard SDS — built by a process-safety engineer, priced for autonomous compliance agents.
6 endpoints in this vertical
Each endpoint is live on Base mainnet. The first curl shows the 402 challenge (free). Sign the challenge with USDC to get the actual response.
| Path | What it does | Method | Price |
|---|---|---|---|
| /api/compliance-check | Analyze regulatory compliance status for a process, facility, or chemical against EPA/OSHA… | POST | $0.05 |
| /api/corrosion-rate | Estimate corrosion rates (mils/year) using API 571 damage mechanisms with remaining-life o… | POST | $0.05 |
| /api/facility-risk | Comprehensive facility risk scoring: process hazards, environmental, regulatory, community… | POST | $0.10 |
| /api/epa-tri-lookup | EPA Toxics Release Inventory lookup by facility, location, or chemical with NAICS context. | POST | $0.03 |
| /api/environmental-risk | Score air, water, soil and waste risk by category with regulatory references. | POST | $0.05 |
| /api/chemical-hazard | GHS class, exposure limits (PEL/TLV/STEL), reactivity, NFPA 704 ratings, PPE. | POST | $0.05 |
Total cost to call every endpoint in this vertical once: $0.330 USDC.
Live demo curl for every endpoint
Regulatory Compliance Check
Analyze regulatory compliance status for a process, facility, or chemical against EPA/OSHA/state regs.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/compliance-check' \
-H 'Content-Type: application/json' \
-d '{"query":"chlorine repackaging facility under 1,500 lb threshold in Texas"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.
Corrosion Rate Estimation
Estimate corrosion rates (mils/year) using API 571 damage mechanisms with remaining-life output.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/corrosion-rate' \
-H 'Content-Type: application/json' \
-d '{"query":"316L SS pipe carrying 80% sulfuric acid at 60C"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.
Facility Risk Assessment
Comprehensive facility risk scoring: process hazards, environmental, regulatory, community impact.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/facility-risk' \
-H 'Content-Type: application/json' \
-d '{"query":"300 bbl crude oil storage tank facility, 2 miles from urban area"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.10 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.
EPA TRI Data Lookup
EPA Toxics Release Inventory lookup by facility, location, or chemical with NAICS context.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/epa-tri-lookup' \
-H 'Content-Type: application/json' \
-d '{"query":"Corpus Christi refineries TRI 2024"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.03 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.
Environmental Risk Scoring
Score air, water, soil and waste risk by category with regulatory references.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/environmental-risk' \
-H 'Content-Type: application/json' \
-d '{"query":"former gas station site, suspected MTBE plume"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.
Chemical Hazard Analysis
GHS class, exposure limits (PEL/TLV/STEL), reactivity, NFPA 704 ratings, PPE.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/chemical-hazard' \
-H 'Content-Type: application/json' \
-d '{"query":"anhydrous ammonia, 2,000 gallon storage tank"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.