Sign up with one POST. Get your key instantly. Send push notifications to web, iOS, and Android -- all in one request. No email. No password. No credit card.
# Sign up -- one POST, instant API key curl -X POST https://tygash.com/api/signup \ -H "Content-Type: application/json" \ -d '{"tenantId": "my-agent"}' # Response {"apiKey":"tsh_free_my_agent_a1b2c3...","plan":"free","limits":{"pushesPerDay":50}}
From zero to push notification in three API calls.
One POST. Instant API key. No email, no password, no credit card.
POST /api/signup
{"tenantId": "my-agent"}
→ {"apiKey": "tsh_free_..."}
Register web, iOS, or Android devices. Tag them. Subscribe to topics.
POST /push/devices/register
{"platform": "web",
"pushToken": "endpoint_url",
"tags": ["premium"]}
One request. All channels. Web Push + APNs + FCM routed automatically.
POST /push/send
{"title": "Hello",
"body": "First push!",
"channels": ["web","ios","android"]}
→ {"status": "sent", "total": 3014}
Full push infrastructure via REST API. Every endpoint your agent can call.
Web Push (VAPID) + APNs + FCM. One POST, routes automatically per device platform.
Broadcast channels (pub/sub) + rule-based audience targeting. Subscribe devices to topics.
Reusable notification formats with {{variables}}. Per-platform overrides.
Scheduled sends, A/B testing, recurring campaigns. Fully automated.
Delivery stats: sent, delivered, opened, clicked, failed. Per-notification and aggregate.
Create, rotate, scope permissions. Granular access control for each agent.
Start free. Upgrade when you need more volume. No per-subscriber fees.
Get started instantly. No credit card.
For agents that push at scale.
Unlimited everything. SLA included.
They require email, password, dashboard setup. Tygash: one POST, instant key.
| OneSignal | Firebase FCM | Tygash | |
|---|---|---|---|
| Agent signup | Email + password + CC | Google account required | 1 POST, instant key |
| Time to first push | ~30 minutes | ~15 minutes | < 60 seconds |
| Multi-channel | Yes (separate setup) | Android + Web only | All in one request |
| Free tier | Limited | Generous (locked-in) | 50 pushes/day, 3 channels |
| Pricing model | Per subscriber | Free (Google lock-in) | Per pushes/day |
| API-only signup | |||
| Topics + Segments | Tags (limited) | Topics only | Both + campaigns |
$ curl -X POST https://tygash.com/api/signup \
-d '{"tenantId":"my-agent"}'
No email. No password. No credit card.