Fetch

Start Batched Fetch

Start a Batched Fetch over multiple URLs using shared Fetch input and Include Options. Search is not supported for Batched Fetch requests.

post/v1/fetch/batched

Headers

x-idempotency-keystring

Optional caller-supplied key that prevents duplicate Batched Fetch runs across separate calls. When omitted, the API generates a unique key. Replaying an identical request with the same key returns the same run ID; reusing the key with a different payload returns a 409 response.

Optional caller-supplied key that prevents duplicate Batched Fetch runs across separate calls. When omitted, the API generates a unique key. Replaying an identical request with the same key returns the same run ID; reusing the key with a different payload returns a 409 response.

Request body

urlsstring[] required

List of URLs to fetch using shared options.

Example request

{
  "urls": [
    "https://example.com/",
    "https://example.com/about"
  ],
  "include": {
    "html": true,
    "markdown": true,
    "screenshot": true,
    "links": true,
    "meta": true,
    "json": true,
    "appendix": true
  },
  "browserConfig": {
    "scrollFullPage": true
  }
}

Response

BatchedRun

idstring required

Batched run ID

Changes

No recorded changes to this endpoint across all 1 revision of this API.