Crawl a small set of web pages synchronously.
Endpoint
/v1/web/crawl
Query
URLs to crawl. Repeat the `url` query parameter for multiple pages (max 5).
const response = await fetch( "https://api.socialfetch.dev/v1/web/crawl?url=https://www.socialfetch.dev", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);