tickerbot_subscribe_scan
Register a webhook to get notified when scan query results change, supporting HTTPS, Discord, or in-app delivery, with real-time, hourly, or market-open cadence.
Instructions
Register a webhook that fires when matches for a scan query change. Pass target_url for an https POST, or channel:"discord" + discord_url to post an embed to Discord; omit for in-app delivery in the dashboard. cadence is real-time (1m) by default; throttle to hourly or nyse_open. Use to satisfy "alert me when this happens" prompts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | SQL WHERE expression — same grammar as scan. | |
| name | No | Human-readable label. Defaults to a truncated version of the query. | |
| cadence | No | Evaluation cadence. Default realtime; hourly/nyse_open throttle. (`1m` accepted as a deprecated alias of realtime.) | |
| channel | No | Delivery channel: `webhook` (POST to target_url), `discord` (embed to discord_url), `mobile_push` (to a registered device), or `in_app` (dashboard only). Inferred from the URL you pass if omitted. | |
| universe | No | Optional universe slug to scope the watch. | |
| device_id | No | Registered device id from the mobile app. Required when channel is "mobile_push". | |
| target_url | No | Optional https URL to POST matches to (the `webhook` channel). Omit for in-app delivery. | |
| discord_url | No | Discord incoming-webhook URL (https://discord.com/api/webhooks/…). Required when channel is "discord". |