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 HTTP fetching. Results delivered via webhook. Does not support options that require page rendering (cookies, wait_for_selector, etc.).

Parameters

  • body (CreateFetchBulkBody)

Call styles

sync_detailed(client=client, body=body) -> Response[CreateFetchBulkResponse202]
sync(client=client, body=body) -> CreateFetchBulkResponse202 | None
await asyncio_detailed(client=client, body=body) -> Response[CreateFetchBulkResponse202]
await asyncio(client=client, body=body) -> CreateFetchBulkResponse202 | None

Get Fetch Bulk

Get fetch bulk job status

Parameters

  • id (str)

Call styles

sync_detailed(id=id, client=client) -> Response[Error | GetFetchBulkResponse200]
sync(id=id, client=client) -> Error | GetFetchBulkResponse200 | None
await asyncio_detailed(id=id, client=client) -> Response[Error | GetFetchBulkResponse200]
await asyncio(id=id, client=client) -> Error | GetFetchBulkResponse200 | None