Short answer: send your Stripe revenue to WidgetDash with one HTTP request, then add the WidgetDash widget to your iPhone Home Screen or Lock Screen. It updates every time you push a new value, and it is free for up to 5 numbers.
A Stripe webhook fires on every successful charge, which makes it the perfect trigger to keep a revenue widget current. Total the day and the month in your handler, then push both to WidgetDash in the same request. Your phone shows the real number the moment money lands, with no dashboard to refresh.
A source is created automatically the first time you push to it, so there is no setup step. Send your Stripe revenue like this:
curl -X PUT https://api.widgetdash.app/api/v1/data/stripe_revenue \
-H "Authorization: Bearer YOUR_WRITE_KEY" \
-H "Content-Type: application/json" \
-d '{
"display_name": "Stripe Revenue",
"icon": "creditcard.fill",
"category": "Revenue",
"metrics": [
{ "label": "Today", "value": "$1,240" },
{ "label": "Month", "value": "$31,910" }
]
}'
Small Lock Screen widgets are supported too, so your Stripe revenue can sit right under the clock.
Yes. In your webhook handler, compute the totals and make one PUT to WidgetDash. The widget updates within the next refresh.
No. You only send the final numbers to WidgetDash. Your Stripe secret never leaves your server.
See all WidgetDash use cases · How to see any number on your iPhone
Your Stripe revenue, on your Home Screen, in about two minutes.
Get started freeFree for up to 5 sources. Pro is $4.90/mo or $29.90/yr for unlimited sources and faster refresh.