Hello,

I am trying to collect tweets from a specific country, say, Spain, but I want tweets that are in the native language (i.e., Spanish) or in English. Is that possible to do in one query call?

The query I currently have is: -is:retweet lang:es place_country:ES

Would the following work to return tweets that are either in English or in Spanish?

-is:retweet lang:es lang:en place_country:ES

Or, do I need to do separate calls to achieve this? Any suggestions welcome :slight_smile:

Thank you, and please let me know if you need any more information.

See Search Tweets - How to build a query | Docs | Twitter Developer Platform on building queries.

I think this should work instead:

-is:retweet (lang:es OR lang:en) place_country:ES
1 Like

This works! Thank you!