SDK ReferencePython SDK
Scrape Bulk
API functions for the Scrape Bulk resource.
Scrape Bulk
Functions for interacting with the scrape_bulk API resource. Each operation ships in four forms — sync / sync_detailed and their async counterparts.
Create Scrape Bulk
Bulk scrape URLs
Enqueues multiple URLs for scraping. Results delivered via webhook.
Parameters
body (CreateScrapeBulkBody)
Call styles
sync_detailed(client, body) -> Response[CreateScrapeBulkResponse202]
sync(client, body) -> CreateScrapeBulkResponse202 | None
await asyncio_detailed(client, body) -> Response[CreateScrapeBulkResponse202]
await asyncio(client, body) -> CreateScrapeBulkResponse202 | NoneGet Scrape Bulk
Get scrape bulk job status
Parameters
id (str)
Call styles
sync_detailed(id, client) -> Response[Error | GetScrapeBulkResponse200]
sync(id, client) -> Error | GetScrapeBulkResponse200 | None
await asyncio_detailed(id, client) -> Response[Error | GetScrapeBulkResponse200]
await asyncio(id, client) -> Error | GetScrapeBulkResponse200 | None