Examples · 20 recipes

Steal these instructions.

Every recipe is executable. The instruction is the code.

E-commerce

Every product with name, price, rating, and stock status. Skip sponsored items. First 50 pages.

→ name · price: number · rating · in_stock: bool

Run in playground →

E-commerce · monitoring

Track the price and stock of these 20 product URLs every 6 hours. Alert me on any change.

→ monitor + webhook · changed: true/false

Run in playground →

Lead generation

All companies in this directory with name, website, and a contact email — follow to their site if the email isn't listed.

→ name · website · email (NOT_FOUND if truly absent)

Run in playground →

Lead generation

Every speaker at this conference with name, title, company, and LinkedIn URL.

→ speaker · title · company · linkedin

Run in playground →

Jobs

All open remote engineering roles with title, salary if shown, and apply link. Only roles posted this month.

→ title · remote: true · salary · apply_url · posted

Run in playground →

Jobs · competitive intel

Every role on these 5 competitor careers pages, grouped by department. Monitor weekly for new openings.

→ company · department · title · new_this_week: bool

Run in playground →

Real estate

New listings under $2,000/mo with 2+ bedrooms posted today: address, rent, beds, baths, sqft, link.

→ address · rent: number · beds · baths · sqft · url

Run in playground →

Real estate

Every agent on this brokerage site with name, phone, and number of active listings.

→ agent · phone · active_listings: number

Run in playground →

News · RAG

The latest 30 articles as clean markdown with title, author, and date — for my RAG index.

→ fit-markdown docs + metadata · boilerplate stripped

Run in playground →

News

Every article mentioning our company this week: title, outlet, date, and a one-line summary.

→ title · outlet · date · summary

Run in playground →

SaaS pricing

Every plan on this pricing page with name, monthly price, annual price, and feature list. Monitor daily.

→ plan · price_monthly · price_annual · features[]

Run in playground →

Reviews

The 100 most recent reviews with reviewer, rating, date, title, and body. Split pros and cons where present.

→ reviewer · rating · date · pros[] · cons[]

Run in playground →

Research · grants

Every open grant on these 40 university pages: name, funder, amount, deadline, eligibility, link.

→ grant · funder · amount · deadline · eligibility · url

Run in playground →

Academic

All papers on this proceedings page with title, authors, year, and PDF link.

→ title · authors[] · year · pdf_url

Run in playground →

Events

All events this month with title, date, venue, and organizer — follow organizer links and grab their website.

→ event · date · venue · organizer · organizer_url

Run in playground →

App intelligence

This app listing's name, rating, review count, current version, and the full release notes.

→ app · rating · reviews_count · version · release_notes

Run in playground →

Restaurants · local

Every menu item with name, description, and price. Group by section.

→ section · item · description · price: number

Run in playground →

Government · public data

All tenders published this week with title, agency, value, and closing date.

→ tender · agency · value · closes

Run in playground →

Docs ingestion

Every API endpoint documented on this site with method, path, and a one-line description. Only /docs/ pages.

→ method · path · description · scoped to /docs/

Run in playground →

Refine · follow-up

(after any extraction) Also include the SKU, split price into amount and currency, and drop out-of-stock rows.

→ dataset updates in place · 0 pages re-crawled

Run in playground →

All 20 recipes run as-is in the playground or via POST /v1/extract. More recipes ship in the examples library.

Found your recipe? Run it.

Open the playground

No signup · 500 free pages when you're ready