x402station Forensics

Cheap due-diligence before your agent integrates an unfamiliar x402 endpoint. POST the URL, get back 7 days of probe data — uptime %, p50/p99 latency, error breakdown, active risk signals, status-code histogram, peer comparison. $0.001 USDC, settled via x402.

The whole call
POST https://x402station.io/api/v1/forensics
{
  "url": "https://api.example.com/x402-endpoint"
}
// First call returns 402 with payment requirements.
// Retry with PAYMENT-SIGNATURE → returns:

{
  "url": "https://api.example.com/x402-endpoint",
  "window_days": 7,
  "uptime_pct": 98.4,
  "latency_ms": { "p50": 142, "p90": 318, "p99": 904 },
  "status_breakdown": { "200": 412, "402": 9817, "500": 41, "504": 9 },
  "error_share_pct": 0.51,
  "signals": ["healthy"],            // active risk signals, if any
  "price": { "amount": "0.005", "currency": "USDC" },
  "first_seen_at": "2026-04-12T08:14:22Z",
  "peer_comparison": {
    "category": "Inference",
    "median_latency_ms": 180,
    "median_uptime_pct": 96.1,
    "rank_in_category": 14
  }
}

What's in the report

Forensics vs Guard vs Watch

Three modes for three different agent timing patterns:

Most production agents use all three: Forensics at integration time, Guard on every paid call, Watch for long-running policies.

Use cases

Pricing