Hey all,

I want to develop a program and search for a keyword and get the following information:

1- The account which twits that keyword;
2- The number of followers of the account in number 1;
3- Date and time of the twit.

Which API package would work for me?

Thank you

Any API package will work but it will depend on the library how you implement it. It’s also language dependent, here are a bunch of good ones: Twitter API v2 tools & libraries | Docs | Twitter Developer Platform

For 1: Use Search Tweets introduction | Docs | Twitter Developer Platform
For 2 and 3: Make sure your request includes appropriate expansions and fields: Using fields and expansions | Docs | Twitter Developer Platform

2 Likes

Thank you so much @IgorBrigadir, for the great info!