paulz
paulz

Reputation: 412

How do I search twitter API for users?

I've been trying to find the right url to receive a list of users based on a specific search (Ideally that would also contain the number of followers of each user that would appear in the search) but I can't seem to find it in twitter's documentation. I imagine it would be something along the lines of https://api.twitter.com/1.1/search/users.json?q=Nike?api=[api key] (I already have an API key to use)

Upvotes: 0

Views: 1971

Answers (1)

Terence Eden
Terence Eden

Reputation: 14314

The Twitter Documentation lists a user search function as:

https://api.twitter.com/1.1/users/search.json

You will need to sign the request with OAuth.

Upvotes: 1

Related Questions