Developer Recipes
Recipe 1: Fill One Hole
unbrowse "top stories with point counts"
unbrowse "top stories with point counts" --url "https://news.ycombinator.com"import { createHole } from "unbrowse/sdk";
const hole = createHole({
client: { apiKey: process.env.UNBROWSE_API_KEY },
});
const r = await hole.fill({
intent: "top stories on Hacker News with point counts",
url: "https://news.ycombinator.com",
});Recipe 2: Inspect a Route Manually
Recipe 3: Auth Before a Fill
Recipe 4: Long-running Worker Pool
Recipe 5: Custom Fetch / Proxy
Recipe 6: Decide Between SDK and CLI
Need
Use
Last updated