Webhooks Integration
Connect to any custom website or service by sending a JSON payload to your own URL. Configure your RankPill webhook once and receive verified article data on 6 Club.
Connect Webhook
Enter the URL where you want to receive the article data.
How to Connect
Follow these steps to integrate RankPill with your 6 Club site.
- Step 1
Create an endpoint
Use the 6 Club webhook receiver at /api/rankpill-webhook. It accepts POST requests, reads the X-RankPill-Signature header, and expects a JSON payload.
- Step 2
Configure your webhook
Copy the endpoint URL into RankPill, choose Signature authentication, and set the same secret in your RANKPILL_WEBHOOK_SECRET environment variable.
- Step 3
Verify signatures
The endpoint verifies the HMAC SHA-256 signature in the X-RankPill-Signature header against the raw request body using your shared secret.
- Step 4
Process article data
Once verified, the payload — containing title, content, metadata, and more — is logged and can be forwarded to your storage, search index, or notification pipeline.
Need more help?
Read the comprehensive RankPill documentation for code examples, troubleshooting, and advanced configuration options.
View Documentation