twitter_monitor_create
Create a monitor to watch an X account for new posts. New posts are HMAC-signed and delivered to your registered webhooks on a shared poll interval. Returns the monitor's ID, normalized handle, status, and poll interval.
Instructions
Start watching an X account for new posts. Every new post from that handle is HMAC-signed and delivered to your registered webhook(s) on a shared poll interval (see twitter_monitor_webhook_create to register a delivery URL first). Free: monitor creation is account administration, not a metered read. Returns the new monitor's id, plus its normalized handle, status, and poll_interval_ms.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes | The X username to watch, without the leading @ (e.g. 'elonmusk'). | |
| webhook_ids | No | Optional. Comma-separated webhook id(s) from twitter_monitor_webhook_create to restrict this monitor's deliveries to. Omit to deliver to every active webhook on the account (the default). | |
| domain_filter | No | Optional. A bare hostname ('example.com') or a full URL ('https://example.com/blog') to restrict delivery to only the new posts that link to that host or a subdomain of it (e.g. 'example.com' matches both example.com and blog.example.com). Normalized server-side: lowercased, scheme/path/query/fragment/leading www./trailing :port stripped. Omit for no filter, the default (deliver every new post). Rejected with a 400 if what remains after normalization is not a valid hostname shape. A post with no matching link is filtered out of delivery, never silently dropped: it still advances the monitor's cursor and counts toward the account's tweets_domain_filtered health metric. |