Examples
Start with scripts, graduate to workflows.
These are the launch assets for GitHub, HN, Reddit, and agent marketplaces.
RAG ingestion
Convert docs pages into Markdown before chunking and embedding.
Competitive monitoring
Extract pricing and feature pages weekly, then diff the Markdown.
Research agents
Give agents clean page context instead of noisy HTML.
const response = await fetch("https://your-domain.com/api/convert", {
method: "POST",
headers: {
"authorization": process.env.CONTENTEXTRACT_API_KEY,
"content-type": "application/json"
},
body: JSON.stringify({
url: "https://example.com/docs",
format: "markdown"
})
});
const { result } = await response.json();
console.log(result.markdown);