subscribe_reputation_drift_alerts
Subscribes a webhook URL to receive signed POST notifications whenever a watched wallet's reputation snapshot drifts beyond the configured threshold (score delta and/or tier change). 30-day paid window per subscription. The reputation-drift-monitor cron evaluates active subscriptions and POSTs { event:'reputation.drift', wallet, previous, current, drift, observed_at, subscription_id } to callback_url. Use to be notified the moment a counterparty's reputation degrades — replaces polling /cross-chain-reputation. Requires x402 payment ($0.01). Returns payment instructions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wallet | Yes | Wallet address to monitor for reputation drift. | |
| callback_url | Yes | HTTPS endpoint that will receive POST drift alerts. | |
| duration_days | No | Length of the paid monitoring window in days. Default 30. | |
| threshold_score | No | Minimum |score_delta| that triggers a POST. Default 5. | |
| max_notifications | No | Cap on POST alerts before subscription auto-exhausts. Default 100. | |
| threshold_tier_change | No | If true (default), any tier flip (Bronze↔Silver↔Gold↔Platinum) fires regardless of score_delta. |