Official Stripe Integration
Stripe Payment Webhook Integration Guide
Learn how to broadcast payment confirmations, subscription updates, and sales milestones directly to Nostr relays.
💳 Stripe Official Resources & Documentation
Explore official Stripe webhooks documentation and event type references.
1 Define Stripe Rule Parameters
Create a rule configured for Stripe intake in your NostrBridge dashboard:
- Rule Name:
Stripe Sales Bot - Provider:
Stripe (stripe.com) - Condition Filter:
type == "charge.succeeded" - Target Relays:
wss://relay.damus.io,wss://nos.lol
2 Liquid Template & Tags Mapping
Set your template to convert raw Stripe amount cents into standard currency display:
âš¡ Payment Received: ${{ payload.data.object.amount / 100 }} {{ payload.data.object.currency | uppercase }}
Description: {{ payload.data.object.description }}
3 Register Webhook in Stripe Dashboard
- Open Stripe Dashboard âž” Developers âž” Webhooks.
- Click Add endpoint and enter your NostrBridge rule URL:
https://api.bridge.workouse.com/v1/wh/YOUR_RULE_ID - Select event type:
charge.succeededorcustomer.subscription.created. - Save changes.