> ## Documentation Index
> Fetch the complete documentation index at: https://docs.context.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Receive batch.completed webhooks

> Sent when a batch completes. Return any 2xx response to acknowledge delivery.

Configure a webhook when you [submit a batch](/api-reference/batches/submit) to receive `batch.completed` events. For other outcomes, see [`batch.failed`](/api-reference/batches/webhooks/failed) and [`batch.cancelled`](/api-reference/batches/webhooks/cancelled).

Use [List Webhook Deliveries](/api-reference/webhooks/list) to inspect retained events and [Retry a Webhook Delivery](/api-reference/webhooks/retry) to resend one. [Retrieve the batch](/api-reference/batches/retrieve) for its current status and fresh result URLs.


## OpenAPI

````yaml webhook batchCompleted
openapi: 3.1.0
info:
  title: Context.dev API
  description: API for retrieving context data from any website
  version: 1.0.0
servers:
  - url: https://api.context.dev/v1
security: []
tags:
  - name: Webhooks
    description: Inspect and retry webhook deliveries. These endpoints cost no credits.
  - name: Batch
    description: Scrape many pages or crawl a site asynchronously.
  - name: Monitors
    description: >-
      Monitor pages, sitemaps, and extracted website data for exact or semantic
      changes. Webhook payloads are documented by the
      MonitorsChangeDetectedWebhookPayload and
      MonitorsRunCompletedWebhookPayload schemas.
  - name: News
    description: >-
      Search live first-party RSS and free historical news data by company
      identity.
paths: {}

````