Short answer: send your YouTube subscribers 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.
Refreshing the studio app to watch your subscriber count is a habit creators know too well. Pull the count from the YouTube Data API in a scheduled script and push it to a widget instead. The number is always there, and the daily delta keeps the momentum visible without the dopamine loop of the app.
A source is created automatically the first time you push to it, so there is no setup step. Send your YouTube subscribers like this:
curl -X PUT https://api.widgetdash.app/api/v1/data/youtube_subs \
-H "Authorization: Bearer YOUR_WRITE_KEY" \
-H "Content-Type: application/json" \
-d '{
"display_name": "YouTube Subs",
"icon": "play.rectangle.fill",
"category": "Creator",
"metrics": [
{ "label": "Subscribers", "value": "14,302" },
{ "label": "Today", "value": "+58" }
]
}'
Small Lock Screen widgets are supported too, so your YouTube subscribers can sit right under the clock.
Yes, to read your count. You fetch it with your own credentials, then push the number to WidgetDash.
Yes. Store yesterday's count and push the difference as a second metric.
See all WidgetDash use cases · How to see any number on your iPhone
Your YouTube subscribers, 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.