Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Create your first crawl run and retrieve generated result content.
curl "$BULKGRID_BASE_URL/api/v1/crawl" \ -H 'Content-Type: application/json' \ -H "x-api-key: $BULKGRID_API_KEY" \ -d '{ "urls": [ "https://example.com/docs", "https://example.com/pricing" ], "options": { "formats": ["markdown", "cleanHtml"], "timeout": 30000, "blockAds": true, "useInteractions": true } }'
import { BulkgridClient } from '@bulkgrid/sdk'; const client = new BulkgridClient({ apiKey: process.env.BULKGRID_API_KEY ?? '', baseUrl: process.env.BULKGRID_BASE_URL ?? '', }); const run = await client.crawl({ urls: ['https://example.com/docs', 'https://example.com/pricing'], options: { formats: ['markdown', 'cleanHtml'], timeout: 30000, blockAds: true, useInteractions: true, }, });