Billing
Stripe webhook endpoint
Receives Stripe webhook events. Verifies the stripe-signature header against the configured webhook secret. Always returns 200 on success. This endpoint does not require API key authentication.
Header Parameters
stripe-signature*string
Stripe webhook signature for verification.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Raw Stripe event payload.
Response Body
application/json
curl -X POST "https://api.nodestash.io/v1/webhooks/stripe" \ -H "stripe-signature: string" \ -H "Content-Type: application/json" \ -d '{}'{
"received": true
}Empty