7 live endpoints $0.020 - $0.10 USDC per call

DevOps & Commerce

Health checks, B2B lead scoring, craft pricing, material costs, supply-chain risk + logistics optimization. The ops & commerce surface for agent platforms.

7 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/supply-risk Single-source, geopolitical, logistics, demand-volatility risk scores + mitigations. POST $0.10
/api/logistics-opt Mode selection, consolidation, last-mile strategy, route optimization recs. POST $0.05
/api/inventory-forecast Forecasting, safety stock, EOQ, ABC/XYZ classification, obsolescence risk. POST $0.05
/api/health-check Returns process uptime, version, last revenue tx, and live x402 wallet status. GET $0.10
/api/lead-score Score (0-100), MQL/SQL/Opportunity tier, recommended outreach plan. POST $0.05
/api/craft-pricing Wholesale + retail price recommendation with margin analysis and competitive positioning. POST $0.02
/api/material-costs Current market prices, supplier options, bulk thresholds, seasonal variation. POST $0.02

Total cost to call every endpoint in this vertical once: $0.390 USDC.

Live demo curl for every endpoint

Supply Chain Risk Assessment

POST /api/supply-risk $0.10 USDC vertical: Supply Chain

Single-source, geopolitical, logistics, demand-volatility risk scores + mitigations.

# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/supply-risk' \
  -H 'Content-Type: application/json' \
  -d '{"query":"small-batch consumer goods reliant on Chinese pigments"}'

# 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.

Logistics Optimization

POST /api/logistics-opt $0.05 USDC vertical: Supply Chain

Mode selection, consolidation, last-mile strategy, route optimization recs.

# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/logistics-opt' \
  -H 'Content-Type: application/json' \
  -d '{"query":"weekly LTL shipments, 1 origin (TX), 8 destinations across SE US"}'

# 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.

Inventory Demand Forecasting

POST /api/inventory-forecast $0.05 USDC vertical: Supply Chain

Forecasting, safety stock, EOQ, ABC/XYZ classification, obsolescence risk.

# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/inventory-forecast' \
  -H 'Content-Type: application/json' \
  -d '{"query":"specialty tea, monthly D2C sales 200-450 units, 2-yr history"}'

# 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.

eClaude Health Check

GET /api/health-check $0.10 USDC vertical: Marketplace Analytics

Returns process uptime, version, last revenue tx, and live x402 wallet status.

# 1. Free: see the 402 challenge headers
curl -i 'https://x402.adametherzlab.com/api/health-check?query=ping'

# 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.

B2B Lead Scoring

POST /api/lead-score $0.05 USDC vertical: Commerce

Score (0-100), MQL/SQL/Opportunity tier, recommended outreach plan.

# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/lead-score' \
  -H 'Content-Type: application/json' \
  -d '{"query":"ARPE Engineering, AZ-based 6-person process safety firm"}'

# 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.

Handcraft Pricing Recommendations

POST /api/craft-pricing $0.02 USDC vertical: Commerce

Wholesale + retail price recommendation with margin analysis and competitive positioning.

# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/craft-pricing' \
  -H 'Content-Type: application/json' \
  -d '{"query":"handmade beaded necklace, $8 materials, 2 hours labor"}'

# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.02 on Base,
#    base64-encode and resend as the X-Payment header.
#    See /start for the wallet setup walkthrough.

Raw Material Cost Estimation

POST /api/material-costs $0.02 USDC vertical: Commerce

Current market prices, supplier options, bulk thresholds, seasonal variation.

# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/material-costs' \
  -H 'Content-Type: application/json' \
  -d '{"query":"high carbon steel sheet 16ga, North America, Q2 2026"}'

# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.02 on Base,
#    base64-encode and resend as the X-Payment header.
#    See /start for the wallet setup walkthrough.