Loading...
Loading...
Pushinator push notification API via curl. Use this skill to send push notifications to mobile devices.
npx skill4agent add vm0-ai/vm0-skills pushinatorcurlOfficial docs:https://pushinator.com/api
export PUSHINATOR_API_KEY="your-api-token"Important: When usingin a command that pipes to another command, wrap the command containing$VARin$VAR. Due to a Claude Code bug, environment variables are silently cleared when pipes are used directly.bash -c '...'bashbash -c 'curl -s "https://api.example.com" -H "Authorization: Bearer $API_KEY"'
https://api.pushinator.comAuthorization: Bearer ${PUSHINATOR_API_KEY}Content-Type: application/json/tmp/pushinator_request.json{
"channel_id": "<your-channel-uuid>",
"content": "Hello from Pushinator!"
}<your-channel-uuid>curl -s -X POST "https://api.pushinator.com/api/v2/notifications/send" \
--header "Authorization: Bearer ${PUSHINATOR_API_KEY}" \
--header "Content-Type: application/json" \
-d @/tmp/pushinator_request.json{
"success": true,
"message": "Notification created and being sent to subscribers"
}/tmp/pushinator_request.json{
"channel_id": "<your-channel-uuid>",
"content": "Deployment complete! Project deployed to production."
}<your-channel-uuid>curl -s -X POST "https://api.pushinator.com/api/v2/notifications/send" \
--header "Authorization: Bearer ${PUSHINATOR_API_KEY}" \
--header "Content-Type: application/json" \
-d @/tmp/pushinator_request.json/tmp/pushinator_request.json{
"channel_id": "<your-channel-uuid>",
"content": "Build failed! Check the CI logs."
}<your-channel-uuid>curl -s -X POST "https://api.pushinator.com/api/v2/notifications/send" \
--header "Authorization: Bearer ${PUSHINATOR_API_KEY}" \
--header "Content-Type: application/json" \
-d @/tmp/pushinator_request.json| Parameter | Type | Required | Description |
|---|---|---|---|
| string | Yes | UUID of the notification channel |
| string | Yes | Notification message text |
| Code | Description |
|---|---|
| 2xx | Success - notification sent |
| 4xx | Invalid request or missing parameters |
| 5xx | Server error - retry recommended |