Product Hunt 🎉 We are featured on Product Hunt! Use code for 1,000 free execution credits.
Custom HTTP & Aggregator Integration

RSS Feeds & Custom HTTP Webhooks Guide

Connect RSS feed aggregators, Zapier, Make.com, IFTTT, or custom microservices to publish Nostr events automatically.

🔌 Provider Webhook Documentation & Tools

Documentation for popular automation platforms and web standards.

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 string
  • payload.data.items[0].link âž” Array item extraction
  • payload.author | default: "Anonymous" âž” Fallback filter

3 Connecting RSS to Webhook Services

Use RSS monitoring tools or aggregators like IFTTT, Zapier, or Make.com to automatically forward RSS item feeds complying with W3C RSS 2.0 Specs directly to your NostrBridge rule endpoint URL.