Webhook Stripe
curl --request POST \
--url https://api.veridical.dev/webhook/stripeimport requests
url = "https://api.veridical.dev/webhook/stripe"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.veridical.dev/webhook/stripe', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));billing
Webhook Stripe
Project a signed Stripe billing event into Veridical entitlements.
POST
/
webhook
/
stripe
Webhook Stripe
curl --request POST \
--url https://api.veridical.dev/webhook/stripeimport requests
url = "https://api.veridical.dev/webhook/stripe"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.veridical.dev/webhook/stripe', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200 - application/json
Successful Response
Last modified on July 28, 2026
⌘I

