Sende Push-Benachrichtigungen an dein iPhone mit einem einzigen HTTP-Request. Kein Account, kein Dashboard.
$ curl -X POST https://pushbird.app/pb_a1b2c3d4... \ -H 'Content-Type: application/json' \ -d '{"title":"Deploy","message":"v2.1 is live"}' {"ok":true}
Lade PushBird aus dem App Store. Die App generiert sofort eine einzigartige Webhook-URL.
Deine URL sieht so aus: https://pushbird.app/pb_abc123... - kopieren, teilen oder QR-Code scannen.
Ruf die URL per curl, CI-Pipeline, Cronjob oder Monitoring-Skript auf. Jeder HTTP-Client funktioniert.
Handy vibriert. Fertig.
# POST mit JSON curl -X POST https://pushbird.app/pb_your_secret \ -H 'Content-Type: application/json' \ -d '{"title":"Build #42","message":"All tests passed"}' # POST mit Text curl -X POST https://pushbird.app/pb_your_secret \ -d 'Server disk at 91%' # GET-Request curl 'https://pushbird.app/pb_your_secret?title=Alert&message=Check+logs'
# POST mit JSON import requests requests.post("https://pushbird.app/pb_your_secret", json={ "title": "Deploy", "message": "v2.1 shipped to prod" }) # POST mit Text requests.post("https://pushbird.app/pb_your_secret", data="Server disk at 91%") # GET-Request requests.get("https://pushbird.app/pb_your_secret", params={"title": "Alert", "message": "Check logs"})
// POST mit JSON await fetch("https://pushbird.app/pb_your_secret", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ title: "CI", message: "Pipeline green" }) }); // POST mit Text await fetch("https://pushbird.app/pb_your_secret", { method: "POST", body: "Server disk at 91%" }); // GET-Request await fetch("https://pushbird.app/pb_your_secret?title=Alert&message=Check+logs");
// POST mit JSON body := strings.NewReader(`{"title":"Alert","message":"CPU > 90%"}`) req, _ := http.NewRequest("POST", "https://pushbird.app/pb_your_secret", body) req.Header.Set("Content-Type", "application/json") http.DefaultClient.Do(req) // POST mit Text http.Post("https://pushbird.app/pb_your_secret", "text/plain", strings.NewReader("Server disk at 91%")) // GET-Request http.Get("https://pushbird.app/pb_your_secret?title=Alert&message=Check+logs")
// POST mit JSON $ch = curl_init('https://pushbird.app/pb_your_secret'); curl_setopt_array($ch, [ CURLOPT_POST => true, CURLOPT_HTTPHEADER => ['Content-Type: application/json'], CURLOPT_POSTFIELDS => json_encode([ 'title' => 'Deploy', 'message' => 'v2.1 shipped' ]) ]); curl_exec($ch); // POST mit Text file_get_contents('https://pushbird.app/pb_your_secret', false, stream_context_create(['http' => [ 'method' => 'POST', 'content' => 'Server disk at 91%' ]])); // GET-Request file_get_contents('https://pushbird.app/pb_your_secret?title=Alert&message=Check+logs');
App installieren, URL holen, lossenden. Keine Accounts, keine E-Mail-Bestaetigung.
Wir speichern deine Nachrichten nicht. Benachrichtigungen gehen durch Apple und werden vergessen. Das Webhook-Secret lebt nur auf deinem Geraet.
Wenn du Dashboards und Teamverwaltung brauchst - schau woanders. Wenn du einen Webhook brauchst der zuverlaessig Benachrichtigungen liefert, bist du hier richtig.
curl, Python, Node, Go, PHP, Ruby. Wenn es HTTP-Requests senden kann, kann es dir einen Push schicken.