Preview what your backend can send

See the lock-screen preview and the exact Push Notification or Live Activity payload. Grab the cURL or SDK request that matches. By the time you sign up, you'll know what ActivitySmith can send and how to wire it into your backend.

This is an Apple SF Symbol name. Browse symbols in SF Symbols or Interactful.

You can add one button to the Live Activity payload.

Sales
last hour
Dashboard
$2430
Revenue
37
Orders
4.8%
Conversion
$65.68
Avg Order
$84
Refunds
18
New Buyers
curl -X PUT https://activitysmith.com/api/live-activity/stream/playground-live-activity \
-H "Authorization: Bearer ACTIVITYSMITH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"content_state": {
"type": "stats",
"title": "Sales",
"subtitle": "last hour",
"icon": {
"symbol": "chart.bar.xaxis",
"color": "green"
},
"metrics": [
{
"label": "Revenue",
"value": "$2430",
"color": "blue"
},
{
"label": "Orders",
"value": "37",
"color": "green"
},
{
"label": "Conversion",
"value": "4.8%",
"color": "magenta"
},
{
"label": "Avg Order",
"value": "$65.68",
"color": "yellow"
},
{
"label": "Refunds",
"value": "$84",
"color": "red"
},
{
"label": "New Buyers",
"value": "18",
"color": "cyan"
}
]
},
"action": {
"title": "Dashboard",
"type": "open_url",
"url": "https://dashboard.example.com/sales"
}
}'
FAQ

Do I need to build my own mobile app to receive these alerts?

No, that's the best part. ActivitySmith provides a dedicated, ready-to-use iOS app. You don't have to write a single line of Swift or manage App Store submissions. Just download our app, pair your device, and start pushing alerts from your backend in minutes.

Do I need an Apple Developer account or push certificates?

No. Because you are sending alerts to the ActivitySmith app rather than your own custom app, we handle all the APNs (Apple Push Notification service) handshake. You don't need to manage certificates, identifiers, or provisioning profiles.

What is the difference between a Push Notification and a Live Activity?

Standard Push Notifications are one-off alerts. Live Activities stay on the user's Lock Screen or Dynamic Island and can be updated in real-time. ActivitySmith allows you to trigger both via simple API, making it easy to show live progress for things like deployments or long-running builds.

Can I use ActivitySmith with my existing CI/CD pipeline?

Yes. Since it's a standard REST API, you can trigger notifications from GitHub Actions, GitLab CI, CircleCI, or any custom shell script using cURL. It is designed to fit into any automated workflow.

Ready to make your backend visible in real time?