Search code examples
apitwittertwitter-oauth

Get Threads Twitter API V2


I am trying to use Twitter API to retrieve threads by the main tweet ID, but it seems like there is no endpoint to achieve this, so is there a way to work around with this to make it work? I have also tried to use search/recent and passing the conversation_id by it returns the comments, not the thread tweets.

Thanks in advance


Solution

  • you should use :

    from:{user_id} to:{user_id} conversation_id:{tweet_id}

    This will fetch the tweets following the initial tweet of the thread that are sent from the user_id (=author_id) to the user_id. => All the tweets of the thread.