Is search synchronous?
Yes.POST /api/v1/search returns results directly.
Are crawl and extraction workflows asynchronous?
Yes. They create runs that you inspect through the runs API.How do I authenticate?
Send your API key in thex-api-key header.
Should I call Bulkgrid directly from the browser?
No. Use your backend or worker layer.How do I know when a run is finished?
PollGET /api/v1/runs/{runId} until status is completed, failed, or cancelled.
How do I get screenshots?
UseGET /api/v1/runs/{runId}/results/{resultId}/screenshot to retrieve a signed URL.