6 live endpoints $0.030 - $0.10 USDC per call

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.

PathWhat it doesMethodPrice
/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

POST /api/compliance-check $0.05 USDC vertical: Industrial Compliance

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

POST /api/corrosion-rate $0.05 USDC vertical: Industrial Compliance

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

POST /api/facility-risk $0.10 USDC vertical: Industrial Compliance

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

POST /api/epa-tri-lookup $0.03 USDC vertical: Industrial Compliance

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

POST /api/environmental-risk $0.05 USDC vertical: Industrial Compliance

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

POST /api/chemical-hazard $0.05 USDC vertical: Industrial Compliance

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.