Get real-time notifications when products go in/out of stock with Discord, Telegram, Slack, Email & SMS
Rich embeds with product details and prices
Instant messages to your chat
Threaded alerts in your workspace
Classic notifications via mail/text
Product is available at a retailer again
Product no longer available at retailer
Price decreased by more than 5%
Price increased significantly
List webhooks for a product
Query: ?productId=123
Response:
{
"subscriptions": [
{
"id": "webhook_1",
"provider": "discord",
"destination": "https://discordapp.com/api/webhooks/...",
"events": ["in_stock", "price_drop"],
"enabled": true
}
],
"total": 1
}Create a webhook subscription
Body:
{
"productId": 123,
"provider": "discord",
"destination": "https://discordapp.com/api/webhooks/...",
"events": ["in_stock", "price_drop"]
}Trigger webhook event (testing)
Body:
{
"productId": 123,
"productName": "Samsung TV",
"event": "price_drop",
"retailer": "JB Hi-Fi",
"currentPrice": 899.99,
"previousPrice": 1299.99
}