Overview
Dashboard search supports GitHub-style advanced keyword search. Combine keywords, exclusions, and free text to filter the events in the LAPLACE Chat dashboard precisely
Search combines with the date range filter and the fan medal level filter for more precise event filtering
Basic Usage
Keyword Filters
Use the keyword:value syntax to search a specific field:
| Keyword | Description | Example |
|---|---|---|
type: | Filter by event type | type:superchat |
uid: | Filter by user ID | uid:2763 |
origin: | Filter by source live room | origin:25034104 |
username: | Filter by username | username:明前奶绿 |
message: | Filter by message content | message:你好 |
medal: | Filter by fan medal name | medal:奶糖花 |
reply: | Filter by reply target (matches the uid@username format) | reply:明前奶绿 |
price: | Filter by amount (Super Chat, gift, and guard events only) | price:>=10 |
Apart from price:, every keyword uses case-insensitive substring
matching and does not have to match the whole field value
Exclusions (Negation)
Add a - prefix to a keyword to exclude results
Exclude messages from the user "网友小A":
-username:网友小AExclude every danmaku:
-type:messageExclude messages containing "呃呃":
-message:呃呃Free Text Search
Text without a keyword is searched across every field:
你好- matches events containing "你好" in any field-再见- excludes events containing "再见"
Numeric Comparison
The price: keyword supports numeric comparison operators, with amounts denominated in Chinese yuan (CNY)
| Expression | Meaning | Example |
|---|---|---|
30 | Equal to (exact match) | price:30 |
=30 | Equal to (explicit operator) | price:=30 |
>30 | Greater than | price:>30 |
>=30 | Greater than or equal to | price:>=30 |
<30 | Less than | price:<30 |
<=30 | Less than or equal to | price:<=30 |
10..50 | Closed interval [10, 50] | price:10..50 |
Decimals (such as 12.5) and negative numbers are supported. Whitespace on either side of an operator is ignored
price: applies only to event types that carry an amount: Super Chat
(superchat), gift (gift), and guard (toast). Every other event type is
excluded automatically when you filter with price:
Multiple Values and Quoting
Separate multiple values of the same keyword with a comma, which is equivalent to OR:
type:superchat,toastValues containing spaces, commas, colons, or other special characters must be wrapped in double or single quotes:
username:"网友 小A"
medal:'奶 糖花'Inside quotes, use \" to escape a double quote:
message:"他说\"你好\""Advanced Examples
Combining Multiple Filters
All filters combine with AND logic:
type:superchat uid:12345Shows only the Super Chats from user 12345
Event Type Reference
The event types available to the type: keyword, grouped by panel:
Main Panel (Chat)
messageRegular danmakueffect-messageEffect danmaku
Super Chat Panel
superchatSuper Chat (SC)
Gift Panel
giftGift/tip eventmvpMVP eventtoastGuard (Captain, Admiral, Governor)red-envelope-startRed envelope startedred-envelope-resultRed envelope resultlottery-resultLucky draw result
Misc Panel
interactionUser interaction (enter, follow, share, and so on)like-clickLike evententry-effectEntry effectlive-cutoffLive stream cut off
Other Events
noticeNotice eventlottery-startLucky draw startedlive-start/live-endStream started / stream endedsystemSystem messageuser-blockUser mute eventsuperchat-deleteSuper Chat deletedroom-name-updateLive room title/category updateroom-mute-on/room-mute-offRoom-wide mute on / off
Keyboard Shortcuts
Start a search with a keyboard shortcut instead of clicking the search box
| Shortcut | Action |
|---|---|
command + F (Mac) / Ctrl + F (Windows) | Focus the search input |
Last updated on September 19, 2026