I’m unable to find something that gives me a webhook notification for a trigger like a new tweet in a list like the ‘new tweet in a list’ feature.
All I need is a webhook notification when a specific account makes a tweet. Even if I can get the tweet link (if the text isn’t possible) I’ll scrape that, but is there any way possible?
All I need is a webhook notification when a specific account makes a tweet.
There’s no “webhook” API for this but there’s a streaming API instead:
Use a filter stream with a follow parameter in v1.1 (follow set to all list members user ids): https://developer.twitter.com/en/docs/twitter-api/v1/tweets/filter-realtime/api-reference/post-statuses-filter
or in v2, from:user OR from:user2 ... rule on https://developer.twitter.com/en/docs/twitter-api/tweets/filtered-stream/api-reference/get-tweets-search-stream
1 Like