RSS Feeds & Custom HTTP Webhooks Guide
Connect RSS feed aggregators, Zapier, Make.com, or custom microservices to publish Nostr events.
1 Custom HTTP POST Payload Format
You can send any valid JSON payload via HTTP POST to your NostrBridge endpoint URL:
curl -X POST https://api.bridge.workouse.com/v1/wh/YOUR_RULE_ID \
-H "Content-Type: application/json" \
-d '{
"title": "New Blog Post",
"summary": "Exploring decentralized social protocols.",
"url": "https://example.com/post/123",
"author": "Alice"
}'
2 JSONPath Field Extraction
Access deeply nested fields using standard dot notation or brackets in your Liquid template:
payload.title➔ Top-level stringpayload.data.items[0].link➔ Array item extractionpayload.author | default: "Anonymous"➔ Fallback filter
3 Connecting RSS to Webhook Services
Use RSS monitoring services like IFTTT, Zapier, or rss2webhook to automatically forward new feed items to your NostrBridge rule endpoint URL.