W
Webhook Relay API
Test and debug webhooks effortlessly
Create temporary webhook endpoints for testing and development. Inspect, replay, and forward incoming webhooks in real-time.
Automation4 endpoints
Endpoints
POST
/createCreate a webhook endpoint
GET
/inbox/{id}Get received webhooks
POST
/forward/{id}Set forwarding URL
Use Cases
Webhook testing
API development
CI/CD pipelines
Integration debugging
Endpoint monitoring
Quick Start
quickstart.js
const response = await fetch(
"https://webhook-relay-by-helix-api.p.rapidapi.com/create",
{
method: "POST",
headers: {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "webhook-relay-by-helix-api.p.rapidapi.com"
}
}
);
const data = await response.json();
console.log(data);