Retrieves webhook

GET
https://reloop.sh/api/webhook/v1/:webhook_id

Path Parameters

webhook_idstringRequired

Webhook ID

  • Minimum length: 1
const response = await fetch("https://reloop.sh/webhook/v1/wh_123456789", {
  headers: {
    "Authorization": "Bearer rl_123456789"
  }
});

const webhook = await response.json();
{
  "id": "wh_123456789",
  "name": "Payments Webhook",
  "url": "https://example.com/webhooks/reloop",
  "secret": "***masked***",
  "status": "active",
  "customHeaders": {
    "x-source": "reloop"
  },
  "rateLimitEnabled": true,
  "maxRequestsPerMinute": 60,
  "maxRetries": 3,
  "retryBackoffMultiplier": 2,
  "filteringOptions": null,
  "lastTriggeredAt": "2026-03-29T10:00:00Z",
  "successCount": 10,
  "failureCount": 1,
  "consecutiveFailures": 0,
  "createdAt": "2026-03-29T10:00:00Z",
  "updatedAt": "2026-03-29T10:00:00Z"
}

Was this page helpful?

Edit this page