import ContextDev from 'context.dev';
const client = new ContextDev({
apiKey: process.env['CONTEXT_DEV_API_KEY'], // This is the default and can be omitted
});
const response = await client.web.webScrapeMd({ url: 'https://example.com' });
console.log(response.markdown);{
"success": true,
"markdown": "<string>",
"url": "<string>"
}Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown (GFM), and returns the result. Uses automatic proxy escalation to handle blocked sites.
import ContextDev from 'context.dev';
const client = new ContextDev({
apiKey: process.env['CONTEXT_DEV_API_KEY'], // This is the default and can be omitted
});
const response = await client.web.webScrapeMd({ url: 'https://example.com' });
console.log(response.markdown);{
"success": true,
"markdown": "<string>",
"url": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Full URL to scrape and convert to markdown (must include http:// or https:// protocol)
Preserve hyperlinks in Markdown output
Include image references in Markdown output
Shorten base64-encoded image data in the Markdown output
Was this page helpful?