๐ŸŽ‰ Limited time โ€” 20% off all plans. View pricing โ†’
Docs ยท Scraping

Async batch scrape

Fire-and-forget for large jobs.

POST /v1/scrape/batch/async

Queue any number of URLs, receive a single webhook callback when the batch completes. Built for production pipelines.

Parameters

Name Type Required Default Description
urls array yes โ€” List of URLs (no upper bound on the async endpoint).
webhook_url string no โ€” URL for the completion callback. Optional โ€” you can also poll.
format string no markdown Output format.

Request

curl -X POST https://api.qcrawl.com/v1/scrape/batch/async \
  -H "Authorization: Bearer osk_..." \
  -d '{"urls": [...], "format": "markdown", "webhook_url": "https://..."}'

Response

{ "status": "queued", "job_id": "..." }

Related