GitHub webhook receiver — HMAC-verified, unauthenticated by design
POST
/api/v1/integrations/github/webhook
const url = 'https://example.com/api/v1/integrations/github/webhook';const options = { method: 'POST', headers: {'x-hub-signature-256': 'example', 'x-github-event': 'example'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/integrations/github/webhook \ --header 'x-github-event: example' \ --header 'x-hub-signature-256: example'Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”x-hub-signature-256
required
string
x-github-event
required
string