SDK ReferencePython SDK
Fetch Bulk
API functions for the Fetch Bulk resource.
Fetch Bulk
Functions for interacting with the fetch_bulk API resource. Each operation ships in four forms — sync / sync_detailed and their async counterparts.
Create Fetch Bulk
Bulk fetch URLs
Enqueues multiple URLs for fast-path HTTP fetching. Results delivered via webhook. Does not support browser-backed options (cookies, wait_for_selector, etc.).
Parameters
body (CreateFetchBulkBody)
Call styles
sync_detailed(client, body) -> Response[CreateFetchBulkResponse202]
sync(client, body) -> CreateFetchBulkResponse202 | None
await asyncio_detailed(client, body) -> Response[CreateFetchBulkResponse202]
await asyncio(client, body) -> CreateFetchBulkResponse202 | NoneGet Fetch Bulk
Get fetch bulk job status
Parameters
id (str)
Call styles
sync_detailed(id, client) -> Response[Error | GetFetchBulkResponse200]
sync(id, client) -> Error | GetFetchBulkResponse200 | None
await asyncio_detailed(id, client) -> Response[Error | GetFetchBulkResponse200]
await asyncio(id, client) -> Error | GetFetchBulkResponse200 | None