> ## Documentation Index
> Fetch the complete documentation index at: https://docs.struct.to/llms.txt
> Use this file to discover all available pages before exploring further.

# Use Cases

> Why use webhooks and what you can do with them.

## Why Webhooks?

<CardGroup cols={2}>
  <Card title="No Polling Required" icon="rotate">
    Stop wasting resources polling the API on an interval. Webhooks push data to your server the moment an event occurs. No cron jobs, no wasted requests, no delays.
  </Card>

  <Card title="Real-Time Updates" icon="bolt">
    Receive events as they happen, not minutes later. React to trades, probability shifts, and volume spikes with sub-second delivery.
  </Card>

  <Card title="Lower Costs" icon="coins">
    No need to run your own infrastructure for cron jobs, polling workers, or background queues. Webhooks handle the delivery, so you just process the event.
  </Card>

  <Card title="Simple Integration" icon="plug">
    Any server that can accept an HTTP POST request can receive webhooks. No SDKs, no websocket connections to maintain, no special infrastructure.
  </Card>
</CardGroup>

## What You Can Build

<CardGroup cols={2}>
  <Card title="Telegram & Discord Alerts" icon="bell">
    Forward webhook payloads to a Telegram bot or Discord channel. Get instant notifications on your phone when a whale trades, a market spikes, or your PnL crosses a threshold.
  </Card>

  <Card title="Automated Trading Bots" icon="robot">
    Trigger buy/sell logic directly from webhook events. Copy-trade whale wallets, hedge on probability shifts, or auto-enter newly created markets.
  </Card>

  <Card title="Live Dashboards" icon="chart-line">
    Pipe events into your database or streaming pipeline to power real-time analytics dashboards without polling for updates.
  </Card>

  <Card title="Alerting & Monitoring" icon="triangle-exclamation">
    Set up PnL alerts, volume anomaly detection, or market resolution monitors that notify your team through Slack, email, or PagerDuty.
  </Card>

  <Card title="Data Pipelines" icon="database">
    Stream every trade, metric update, and price tick directly into your data warehouse for backtesting, research, or ML model training.
  </Card>

  <Card title="Cross-Market Signals" icon="arrow-right-arrow-left">
    Combine prediction market events with on-chain asset price feeds to build cross-market trading signals and arbitrage strategies.
  </Card>
</CardGroup>
