Twitter – n API that returns Twitter usernames

twitter

I am looking to compile a list of URLs and associated Twitter usernames. Is there an API that you can provide a URL to and it would return a Twitter username?

Clearbit has an API for sending a URL and getting a logo in return. https://clearbit.com/

Was wondering if anyone knew of a similar API for Twitter handles.

Best Answer

You are looking for GET users/show

This returns a variety of information about the user specified by the required user_id or screen_name parameter.

GET users / lookup is used to retrieve a bulk collection of user objects.

Resource URL:

https://api.twitter.com/1.1/users/show.json
Related Topic