How to send push notifications with Shell Scripts

Updated on March 29, 2026

Learn how to send Signalgrid push notifications
from shell scripts and cron-based automation.

Signalgrid makes it straightforward to send notifications from Shell Scripts. The platform uses a simple model built around your client_key, a target channel, and a few core fields such as title, body, type, and optional critical.

Shell scripts are still everywhere. Signalgrid makes it easy to add simple notification delivery to scheduled tasks, maintenance jobs, and system scripts.

What you need

  • A Signalgrid account
  • Your client key
  • A channel token
  • Shell Scripts available in your environment

Basic example

The following example sends a simple notification with Shell Scripts.

#!/bin/sh

TITLE="Nightly Job"
BODY="The scheduled task finished successfully"

curl -s -X POST https://api.signalgrid.co/v1/push   -d "client_key=${SIGNALGRID_CLIENT_KEY}"   -d "channel=${SIGNALGRID_CHANNEL}"   -d "title=${TITLE}"   -d "body=${BODY}"   -d "type=SUCCESS"

Required fields

Field
Description
client_key
Authenticates the request on behalf of your Signalgrid user
channel
The channel token that should receive the notification
title
Short notification title
body
Main notification message
type
Visual notification type such as INFO, WARN, SUCCESS, or CRIT
critical
Optional flag for urgent notifications

Environment variables

Keeping credentials outside your code is usually the better move.

export SIGNALGRID_CLIENT_KEY=your_client_key
export SIGNALGRID_CHANNEL=your_channel_token

Example: Cron and Unix Automation

Shell scripts are still everywhere. Signalgrid makes it easy to add simple notification delivery to scheduled tasks, maintenance jobs, and system scripts.

Related Documentation