Fetch an RSS/Atom feed and return entries as a table
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| url | VARCHAR | RSS/Atom feed URL |
| limit(optional) | INTEGER | Max entries to return |
Fetches at least one entry from the Hacker News RSS feed
SELECT
COUNT(*) > 0
FROM
rss ('https://news.ycombinator.com/rss', 3)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
Fetch an RSS/Atom feed and return entries as a table
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| url | VARCHAR | RSS/Atom feed URL |
| limit(optional) | INTEGER | Max entries to return |
Fetches at least one entry from the Hacker News RSS feed
SELECT
COUNT(*) > 0
FROM
rss ('https://news.ycombinator.com/rss', 3)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