Advanced Search Documentation

Learn how to use powerful search operators to find exactly what you're looking for

Search Syntax

&& OR Operator

Use && to separate groups of conditions where any group can match.

Icon_Emote_Hello&&Icon_Token_Camo

Finds items that contain either "Icon_Emote_Hello" OR "Icon_Token_Camo".

& AND Operator

Use & to combine conditions that must all be true.

Icon_Token_Camo&Rare:BLUE

Finds items that contain both "Icon_Token_Camo" AND have rarity set to "BLUE".

field:value Field-Specific Search

Search within specific fields using the field:value syntax.

collectionType:EMOTE&Rare:PURPLE

Finds items where the collectionType is exactly "EMOTE" AND rarity is exactly "PURPLE".

Available Fields

You can search by any of these fields using the field:value syntax:

icon The icon identifier for the item
itemID The unique identifier for the item
description The primary description of the item
description2 Secondary description field
Rare The rarity level of the item
isUnique Whether the item is unique (true/false)
IconInAB Icon location identifier
itemType The type of item
collectionType The collection category of the item

Item Types & Rarities

Rarity Types

Collection Types

Advanced Examples

Complex Boolean Search

Icon_Emote_Hello&collectionType:EMOTE&&Icon_Token_Camo&collectionType:WEAPON_SKIN

Finds items that are (Icon_Emote_Hello AND collectionType=EMOTE) OR (Icon_Token_Camo AND collectionType=WEAPON_SKIN).

Multiple Field Search

Icon_Token_Camo&collectionType:WEAPON_SKIN&Rare:BLUE

Finds items containing "Icon_Token_Camo" with collectionType=WEAPON_SKIN and rarity=BLUE.

Mixed Search

collectionType:EMOTE&Rare:PURPLE&&collectionType:WEAPON_SKIN&Rare:ORANGE

Finds items that are (collectionType=EMOTE AND rarity=PURPLE) OR (collectionType=WEAPON_SKIN AND rarity=ORANGE).

Field-Specific Examples

itemID:909000001

Finds the item with ID 909000001.

isUnique:true&Rare:PURPLE

Finds unique items with purple rarity.

description:Hello

Finds items with "Hello" in their description.