← PushPig
Smart home & IoT
Events from Home Assistant, IoT devices and sensors as push.
Your home and your devices have a lot to say: motion detected, laundry done, water in the basement.
With PushPig you forward smart home and IoT events as push
notifications — to phone, browser and email.
Connect Home Assistant
In Home Assistant a single rest_command is enough, which you then call from
automations:
rest_command:
pushpig:
url: https://pushpig.de/api/push/send
method: POST
headers:
Authorization: "Bearer pp_YOUR_API_KEY"
Content-Type: application/json
payload: '{"channel":"home","title":"{{ title }}","body":"{{ message }}"}'
Your own devices & sensors
An ESP32, a Raspberry Pi or a home-grown sensor script — anything that speaks HTTP sends with a
single request:
curl -X POST https://pushpig.de/api/push/send \
-H "Authorization: Bearer pp_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"channel":"home","title":"Mailbox","body":"Post has arrived"}'
Critical events, instantly
A water alarm or smoke detector should never wait. With "urgent": true the push
bypasses quiet hours and is delivered immediately — while "laundry done" politely
respects them.
Split topics into separate
channels (e.g.
alarm and
household) so everyone at home only subscribes to what matters to them.
Help & API ·
Pricing ·
Contact ·
Imprint ·
Privacy