Skip to main content
This page provides a list of operators availble when building rules for Filtered Stream v2.

List of operators

Note: For some operators, an alternate name, or alias, is available.
OperatorTypeDescription
keywordStandaloneMatches a keyword within the body of a Post. This is a tokenized match, meaning that your keyword string will be matched against the tokenized text of the Post body. Tokenization splits words based on punctuation, symbols, and Unicode basic plane separator characters.
For example, a Post with the text “I like coca-cola” would be split into the following tokens: I, like, coca, cola. These tokens would then be compared to the keyword string used in your rule. To match strings containing punctuation (for example, coca-cola), symbol, or separator characters, you must wrap your keyword in double-quotes.

Example: pepsi OR cola OR "coca cola"
emojiStandaloneMatches an emoji within the body of a Post. Similar to a keyword, emojis are a tokenized match, meaning that your emoji will be matched against the tokenized text of the Post body.

Note that if an emoji has a variant, you must wrap it in double quotes to add to a rule.

Example: (😃 OR 😡) 😬
"exact phrase match"StandaloneMatches the exact phrase within the body of a Post.

Example: ("X API" OR #v2) -"filtered stream"
"keyword1 keyword2"~NStandaloneProximity operator that matches a Post where keywords are within N tokens of each other.
Keywords in reverse order can be no more than N-2 tokens apart. N cannot be greater than 6.

Example: "social media"~5 OR "API"~3
#StandaloneMatches any Post containing a recognized hashtag, if the hashtag is a recognized entity in a Post.

This operator performs an exact match, NOT a tokenized match, meaning the rule #thanku will match posts with the exact hashtag #thanku, but not those with the hashtag #thankunext.

Example: #thankunext #fanart OR @arianagrande
@StandaloneMatches any Post that mentions the given username, if the username is a recognized entity (including the @ character).

Example: (@XDevelopers OR @api) -@x
$StandaloneMatches any Post that contains the specified ‘cashtag’ (where the leading character of the token is the $ character).

Note that the cashtag operator relies on X’s ‘symbols’ entity extraction to match cashtags, rather than trying to extract the cashtag from the body itself.

Example: $twtr OR @XDevelopers -$fb
from:StandaloneMatches any Post from a specific user.
The value can be either the username (excluding the @ character) or the user’s numeric user ID.

You can only pass a single username/ID from: operator.

Example: from:XDevelopers OR from:api -from:X
to:StandaloneMatches any Post that is in reply to a particular user.
The value can be either the username (excluding the @ character) or the user’s numeric user ID.

You can only pass a single username/ID per to: operator.

Example: to:XDevelopers OR to:api -to:x
url:StandalonePerforms a tokenized match on any validly-formatted URL of a Post.

This operator can match on the contents of both the url or expanded_url fields. For example, a Post containing “You should check out X Developer Labs: https://t.co/c0A36SWil4” (with the short URL redirecting to https://developer.x.com) will match both the following rules:

from:XDevelopers url:"https://developer.x.com"
(because it will match the contents of entities.urls.expanded_url)

from:XDevelopers url:"https://t.co"
(because it will match the contents of entities.urls.url)

Tokens and phrases containing punctuation or special characters should be double-quoted (for example, url:"/developer"). Similarly, to match on a specific protocol, enclose in double-quotes (for example, url:"https://developer.x.com").

You can only pass a single URL per url: operator.
retweets_of:StandaloneAvailable alias: retweets_of_user:
Matches Posts that are Retweets of the specified user. The value can be either the username (excluding the @ character) or the user’s numeric user ID.

You can only pass a single username/ID per retweets_of: operator.

Example: retweets_of:XDevelopers OR retweets_of:twitterapi
See HERE for methods for looking up numeric X Account IDs.
context:StandaloneMatches Posts with a specific domain id and/or domain id, entity id pair where * represents a wildcard. To learn more about this operator, please visit our page on Post annotations.

You can only pass a single domain/entity per context: operator.

context:domain_id.entity_id
context:domain_id.*
context:*.entity_id

Examples:
context:10.799022225751871488
(domain_id.entity_id returns Posts matching that specific domain-entity pair)

context:47.*
(domain_id.* returns Posts matching that domain ID, with any domain-entity pair)

context:*.799022225751871488
(*.entity_id returns Posts matching that entity ID, with any domain-entity pair)
entity:StandaloneMatches Posts with a specific entity string value. To learn more about this operator, please visit our page on annotations.

You can only pass a single entity per entity: operator.

entity:"string declaration of entity/place"

Examples: entity:"Michael Jordan" OR entity:"Barcelona"
conversation_id:StandaloneMatches Posts that share a common conversation ID. A conversation ID is set to the Post ID of a Post that started a conversation. As Replies to a Post are posted, even Replies to Replies, the conversation_id is added to its JSON payload.

You can only pass a single conversation ID per conversation_id: operator.

Example: conversation_id:1334987486343299072 (from:XDevelopers OR from:api)
bio:StandaloneAvailable alias: user_bio:
Matches a keyword or phrase within the Post publisher’s bio. This is a tokenized match within the contents of the description field within the User object.

Example: bio:developer OR bio:"data engineer" OR bio:academic
bio_name:StandaloneMatches a keyword within the Post publisher’s user bio name. This is a tokenized match within the contents of a user’s “name” field within the User object.

Example: bio_name:phd OR bio_name:md
bio_location:StandaloneAvailable alias: user_bio_location:
Matches Posts that are published by users whose location contains the specified keyword or phrase. This operator performs a tokenized match, similar to the normal keyword rules on the message body.

This location is part of the User object, matches on the ‘location’ field, and is a non-normalized, user-generated, free-form string. It is also different from a Post’s location (see place:).

Example: bio_location:"big apple" OR bio_location:nyc OR bio_location:manhattan
place:StandaloneMatches Posts tagged with the specified location or X place ID. Multi-word place names (“New York City”, “Palo Alto”) should be enclosed in quotes.

You can only pass a single place per place: operator.

Note: See the GET geo/search standard v1.1 endpoint for how to obtain X place IDs.

Note: This operator will not match on Retweets, since Retweet’s places are attached to the original Post. It will also not match on places attached to the original Post of a Quote Tweet.

Example: place:"new york city" OR place:seattle OR place:fd70c22040963ac7
place_country:StandaloneMatches Posts where the country code associated with a tagged place/location matches the given ISO alpha-2 character code.

You can find a list of valid ISO codes on Wikipedia.

You can only pass a single ISO code per place_country: operator.

Note: This operator will not match on Retweets, since Retweet’s places are attached to the original Post. It will also not match on places attached to the original Post of a Quote Tweet.

Example: place_country:US OR place_country:MX OR place_country:CA
point_radius:StandaloneMatches against the place.geo.coordinates object of the Post when present, and in X, against a place geo polygon, where the Place polygon is fully contained within the defined region.

point_radius:[longitude latitude radius]

- Units of radius supported are miles (mi) and kilometers (km)
- Radius must be less than 25mi
- Longitude is in the range of ±180
- Latitude is in the range of ±90
- All coordinates are in decimal degrees
- Rule arguments are contained within brackets, space delimited

You can only pass a single geo polygon per point_radius: operator.

Note: This operator will not match on Retweets, since Retweet’s places are attached to the original Post. It will also not match on places attached to the original Post of a Quote Tweet.

Example: point_radius:[2.355128 48.861118 16km] OR point_radius:[-41.287336 174.761070 20mi]
bounding_box:StandaloneAvailable alias: geo_bounding_box:
Matches against the place.geo.coordinates object of the Post when present, and in X, against a place geo polygon, where the place polygon is fully contained within the defined region.

bounding_box:[west_long south_lat east_long north_lat]

- west_long south_lat represent the southwest corner of the bounding box where west_long is the longitude of that point, and south_lat is the latitude.
- east_long north_lat represent the northeast corner of the bounding box, where east_long is the longitude of that point, and north_lat is the latitude.
- Width and height of the bounding box must be less than 25mi
- Longitude is in the range of ±180
- Latitude is in the range of ±90
- All coordinates are in decimal degrees.
- Rule arguments are contained within brackets, space delimited.

You can only pass a single geo polygon per bounding_box: operator.

Note: This operator will not match on Retweets, since Retweet’s places are attached to the original Post. It will also not match on places attached to the original Post of a Quote Tweet.

Example: bounding_box:[-105.301758 39.964069 -105.178505 40.09455]
is:retweetConjunction requiredMatches on Retweets that match the rest of the specified rule. This operator looks only for true Retweets (for example, those generated using the Retweet button). Quote Tweets will not be matched by this operator.

Example: data @XDevelopers -is:retweet
is:replyConjunction requiredDeliver only explicit replies that match a rule. Can also be negated to exclude replies that match a rule from delivery.

When used with the filtered stream, this operator matches on replies to an original Post, replies in quoted Posts, and replies in Retweets.

Example: from:XDevelopers is:reply
is:quoteConjunction requiredReturns all Quote Tweets, also known as Posts with comments.

Example: "sentiment analysis" is:quote
is:verifiedConjunction requiredDeliver only Posts whose authors are verified by X.

Example: #nowplaying is:verified
-is:nullcastConjunction requiredRemoves Posts created for promotion only on ads.twitter.com that have a source:"Twitter for Advertisers (legacy)" or source:"Twitter for Advertisers".
This operator must be negated.

For more info on Nullcasted Posts, see our page on Post availability.

Example: "mobile games" -is:nullcast
has:hashtagsConjunction requiredMatches Posts that contain at least one hashtag.

Example: from:XDevelopers -has:hashtags
has:cashtagsConjunction requiredMatches Posts that contain a cashtag symbol (with a leading ‘character.Forexample,' character. For example, `tag).<br/><br/>Example: #stonks has:cashtags`
has:linksConjunction requiredThis operator matches Posts which contain links and media in the Post body.

Example: from:XDevelopers announcement has:links
has:mentionsConjunction requiredMatches Posts that mention another X user.

Example: #nowplaying has:mentions
has:mediaConjunction requiredAvailable alias: has:media_link
Matches Posts that contain a media object, such as a photo, GIF, or video, as determined by X. This will not match on media created with Periscope, or Posts with links to other media hosting sites.

Example: (kittens OR puppies) has:media
has:imagesConjunction requiredMatches Posts that contain a recognized URL to an image.

Example: #meme has:images
has:video_linkConjunction requiredAvailable alias: has:videos
Matches Posts that contain native X videos, uploaded directly to X. This will not match on videos created with Periscope, or Posts with links to other video hosting sites.

Example: #icebucketchallenge has:video_link
has:geoConjunction requiredMatches Posts that have Post-specific geolocation data provided by the X user. This can be either a location in the form of a X place, with the corresponding display name, geo polygon, and other fields, or in rare cases, a geo lat-long coordinate.

Note: Operators matching on place (Post geo) will only include matches from original posts. Retweets do not contain any place data.

Example: recommend #paris has:geo -bakery
sample:Conjunction requiredReturns a random percent sample of Posts that match a rule rather than the entire set of Posts. The percent value must be represented by an integer between 1 and 100 (for example, sample:10 will return a random 10% sample).

This operator first reduces the scope of the stream to the percentage you specified, then the rule/filter is applied to that sampled subset. In other words, if you are using, for example, sample:10, each Post will have a 10% chance of being in the sample.

This operator applies to the entire rule and requires all OR’d terms to be grouped.

Example: #nowplaying @spotify sample:15
lang:Conjunction requiredMatches Posts that have been classified by X as being of a particular language (if, and only if, the post has been classified). It is important to note that each Post is currently only classified as being of one language, so AND’ing together multiple languages will yield no results.

You can only pass a single BCP 47 language identifier per lang: operator.

Note: if no language classification can be made the provided result is ‘und’ (for undefined).

Example: recommend #paris lang:en

The list below represents the currently supported languages and their corresponding BCP 47 language identifier:

LanguageBCP 47
--
Amharicam
Arabicar
Armenianhy
Basqueeu
Bengalibn
Bosnianbs
Bulgarianbg
Burmesemy
Croatianhr
Catalanca
Czechcs
Danishda
Dutchnl
Englishen
Estonianet
Finnishfi
Frenchfr
Georgianka
Germande
Greekel
Gujaratigu
Haitian Creoleht
Hebrewiw
Hindihi
Latinized Hindihi-Latn
Hungarianhu
Icelandicis
Indonesianin
Italianit
Japaneseja
Kannadakn
Khmerkm
Koreanko
Laolo
Latvianlv
Lithuanianlt
Malayalamml
Maldiviandv
Marathimr
Nepaline
Norwegianno
Oriyaor
Panjabipa
Pashtops
Persianfa
Polishpl
Portuguesept
Romanianro
Russianru
Serbiansr
Simplified Chinesezh-CN
Sindhisd
Sinhalasi
Slovaksk
Sloveniansl
Sorani Kurdishckb
Spanishes
Swedishsv
Tagalogtl
Tamilta
Telugute
Thaith
Tibetanbo
Traditional Chinesezh-TW
Turkishtr
Ukrainianuk
Urduur
Uyghurug
Vietnamesevi
Welshcy
followers_count:Matches Posts when the author has a followers count within the given range.
If a single number is specified, any number equal to or higher will match.

Example: followers_count:500

Additionally, a range can be specified to match any number in the given range.

Example: followers_count:1000..10000
tweets_count:Available alias: statuses_count:
Matches Posts when the author has posted a number of Posts that falls within the given range.
If a single number is specified, any number equal to or higher will match.

Example: tweets_count:1000

Additionally, a range can be specified to match any number in the given range.

Example: tweets_count:1000..10000
following_count:Available alias: friends_count:
Matches Posts when the author has a friends count (the number of users they follow) that falls within the given range.
If a single number is specified, any number equal to or higher will match.

Example: following_count:500

Additionally, a range can be specified to match any number in the given range.

Example: following_count:1000..10000
listed_count:Available alias: user_in_lists_count:
Matches Posts when the author is included in the specified number of Lists.
If a single number is specified, any number equal to or higher will match.

Example: listed_count:10

Additionally, a range can be specified to match any number in the given range.

Example: listed_count:10..100
url_title:Available alias: within_url_title:
Performs a keyword/phrase match on the expanded URL HTML title metadata.

Example: url_title:snow
url_description:Available alias: within_url_description:
Performs a keyword/phrase match on the expanded page description metadata.

Example: url_description:weather
url_contains:Matches Posts with URLs that literally contain the given phrase or keyword. To search for patterns with punctuation in them (i.e., google.com) enclose the search term in quotes.
NOTE: This will match against the expanded URL as well.

Example: url_contains:photos
source:Matches any Post generated by the given source application. The value must be either the name of the application or the application’s URL. Cannot be used alone.

Example: source:"X for iPhone"

Note: As an X app developer, Posts created programmatically by your application will have the source of your application Name and Website URL set in your app settings.
in_reply_to_tweet_id:Available alias: in_reply_to_status_id:
Deliver only explicit Replies to the specified Post.

Example: in_reply_to_tweet_id:1539382664746020864
retweets_of_tweet_id:Available alias: retweets_of_status_id:
Deliver only explicit (or native) Retweets of the specified Post. Note that the status ID used should be the ID of an original Post and not a Retweet.

Example: retweets_of_tweet_id:1539382664746020864