Destinations
Fan-out targets: email, Slack, Discord, webhooks. Plan-tier availability below.
The default destination for every endpoint. The recipient you pass at creation time is where every non-spam submission lands. Free tier supports one email recipient per endpoint.
# Email-only destination is the default for every unclaimed endpoint. curl -X POST https://gopigeon.dev/new -d 'recipient=you@example.com'
Slack
Pro-tier destination. Add a Slack incoming-webhook URL in the dashboard; every submission posts a formatted message to that channel.
Discord
Pro-tier destination. Same shape as Slack — paste a Discord webhook URL into the dashboard and submissions relay as channel messages.
Webhooks
Pro-tier destination. Arbitrary HTTPS endpoint receives a JSON POST for every submission. Useful for piping into your own CRM or automation stack.
Tier availability
- Free tier: one email recipient per endpoint. That’s it — the single-destination rule keeps unclaimed traffic bounded.
- Pro tier: unlimited fan-out to email, Slack, Discord, and arbitrary webhook URLs. Configured per-endpoint in the dashboard.
{ "destinations": [ { "type": "email", "to": "you@example.com" }, { "type": "slack", "webhook_url": "https://hooks.slack.com/services/..." }, { "type": "discord", "webhook_url": "https://discord.com/api/webhooks/..." }, { "type": "webhook", "url": "https://example.com/hooks/contact" } ] }