Filters let you narrow down data to specific segments. Cryptique provides a visual query builder with AND/OR logic and type-specific operators for precise filtering.
# Exact valuetransaction_count equal 0 # Users with no transactions# Comparisonsamount_usd greater_than 1000 # High-value transactionsgas_used less_than 100000 # Low gas transactions# Range filteringamount_usd between 100 and 10000 # Mid-tier transactionssession_duration not_between 0 and 10 # Exclude bounces# Existence checkstoken_balance is_numeric # Has balance data
# Relative time filterstimestamp last 30 days # Last month's activitytimestamp last 24 hours # Today's eventscreated_at not_in_the_last 90 days # Older users only# Date rangetimestamp between "2024-01-01" and "2024-01-31"timestamp not_between "2024-12-24" and "2024-12-26" # Exclude holidays# Specific datetimestamp on "2024-01-15" # Single daytimestamp not_on "2024-01-01" # Exclude New Year# Before/aftertimestamp before "2024-06-01" # Before Junetimestamp since "2024-01-01" # This year onlyfirst_seen before_the_last 365 days # Users over a year old# Future dates (for expiry, subscription end, etc.)subscription_end in_the_next 30 days # Expiring soon
# Any chain is ethereum OR polygonchains_used any_in_list where item is "ethereum" OR item is "polygon"# User has used any EVM chainchains_used any_in_list where item contains "evm"# All tags must be from approved listtags all_in_list where item is "verified" OR item is "premium"
# Any transaction over $1000transaction_amounts any_in_list where item greater_than 1000# All balances are positivetoken_balances all_in_list where item greater_than 0
Events where:├── event_name is "swap_completed"├── AND chain is "ethereum"├── AND amount_usd greater_than 100└── AND timestamp last 7 days→ Only Ethereum swaps over $100 in the last week
Events where:├── event_name is "swap_completed"└── AND ( ├── chain is "ethereum" └── OR chain is "arbitrum")└── AND ( ├── amount_usd greater_than 1000 └── OR user_tier is "whale")→ Swaps on Ethereum or Arbitrum that are either high-value ($1000+) or from whale users
Transactions:├── chain is "ethereum"├── AND contract_name is "Swap Router"├── AND method_name is "swapExactTokensForTokens"└── AND value greater_than 0
✅ For exact match: is / equal✅ For ranges: between / greater_than✅ For text search: contains❌ Using contains for exact values❌ Using is for partial matches
# High-value users: Pro plan OR whale behaviorUsers where:├── plan is "pro" # Paying customers└── OR ( ├── total_volume greater_than 100000 # High volume └── AND transaction_count greater_than 50 # Active)