This search uses Tantivy for fast full-text search. You can search across three fields to find contextual matches.
Each transcript line is indexed with context from its surrounding lines:
line: - The current line (default, can be omitted)prev: - The previous line's contentnext: - The next line's contentExample: line:conspiracy AND prev:alex finds lines containing "conspiracy" where the previous line mentioned "alex".
knowledge fight - Lines mentioning both words"knowledge fight" - Exact phrase (or use checkbox)+jordan -peterson - Jordan, but not Petersoncovid OR coronavirus - Either termtrump AND biden - Both terms(A AND B) OR (C AND D) - Complex grouping"trump epstein"~2 - Proximity (max 2 words apart)conspir.* - Wildcard: conspiracy, conspiratorial...zagami? - Fuzzy: zagami, zegani, zogani, etcz[aeo]gh?a[mn]i - Regex character classesprev:trump AND line:lie - "lie" after Trump mentionnext:evidence - Lines before "evidence"prev:said AND next:wrong - Context sandwichPerson - Filter by speakerDate - Limit to date rangeExclude Sources - Invert source selectionExclude Person - Exclude speakerInclude Hidden - Show hidden sourcesThis query finds lines where someone claims ignorance about something, with context suggesting they're discussing Trump:
(
line:("have not heard" OR "haven't heard" OR "did not hear" OR "not heard")
OR line:("have not seen" OR "haven't seen" OR "did not see" OR "not seen")
OR line:("do not know" OR "don't know" OR "did not know" OR "no knowledge")
OR line:("not aware" OR "unaware" OR "not familiar")
) AND (
prev:trump OR next:trump OR prev:"donald trump" OR next:"donald trump"
) AND (
prev:said OR next:said OR prev:tweet OR next:tweet
OR prev:statement OR next:statement OR prev:did OR next:did
)
How it works:
Knowledge Fight.* for wildcards and ? for fuzzy matching when transcription may be imperfectUse this CURL command to perform a search using the API with your current parameters
q - Search termss - Show paths (comma-separated)exact - Exact/phrase search (on/off)offset - Result offsetlimit - Number of resultsorder - episode, recent, or scoreinvert - Invert sources (on/off)start_date - YYYY-MM-DDend_date - YYYY-MM-DDperson - Filter by personexclude_person - Exclude person (on/off)