I previously used “1.1/statuses/lookup.json” endpoint and use tweet IDs to scrape data. However, I noticed that reply_count was no longer available. So, I am wondering what is the new version of statuses/show/id endpoint? Or, through which API/endpoint can I get the full information of each tweet? Thanks!

The new Labs API https://developer.twitter.com/en/docs/labs/tweets-and-users/api-reference/get-tweets lets you specify 1 id or a comma separated list of 100 IDs, like statuses/lookup. It will replace both lookup and show as far as i can tell.

1 Like

reply_count has never been available via the v1.1 APIs. It is available in the premium and enterprise APIs, and is also available (along with many more new and additional fields such as annotations and additional metrics) via the Twitter Developer Labs APIs, which will replace v1.1 in the future.

Per @IgorBrigadir’s response, you should enable the Tweets and Users feature under Labs, and you can then use the new /labs/2/tweets/[id] endpoint with the appropriate fields and expansions.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.