Parse raw email into structured JSON (from, to, cc, date, subject, body)
Per-row — runs once for each row.
PARSE_EMAIL({{ raw_email }})| name | type | description |
|---|---|---|
| raw_email | VARCHAR | Raw email text with headers |
Extracts sender details from a raw email
SELECT
parse_email (
'From: john@example.com
To: jane@example.com
Subject: Hello
This is the body.'
)Crawl a website and extract structured data from each page (via Firecrawl)
Extract specific information from unstructured text (zero-shot NER)
LLM-backed extraction (escape hatch for EXTRACTS)
Extract structured fields from text per a user-supplied schema
Merge multiple timelines into unified chronological sequence
Extract information from text using natural-language instructions
Parse raw email into structured JSON (from, to, cc, date, subject, body)
Per-row — runs once for each row.
PARSE_EMAIL({{ raw_email }})| name | type | description |
|---|---|---|
| raw_email | VARCHAR | Raw email text with headers |
Extracts sender details from a raw email
SELECT
parse_email (
'From: john@example.com
To: jane@example.com
Subject: Hello
This is the body.'
)Crawl a website and extract structured data from each page (via Firecrawl)
Extract specific information from unstructured text (zero-shot NER)
LLM-backed extraction (escape hatch for EXTRACTS)
Extract structured fields from text per a user-supplied schema
Merge multiple timelines into unified chronological sequence
Extract information from text using natural-language instructions