> ## 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.cancelled webhooks

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

After [cancelling a batch](/api-reference/batches/cancel), use [Retrieve a Batch](/api-reference/batches/retrieve) to check its current status and any available results.

Use [List Webhook Deliveries](/api-reference/webhooks/list) to inspect retained events and [Retry a Webhook Delivery](/api-reference/webhooks/retry) to resend one.


## OpenAPI

````yaml webhook batchCancelled
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: {}

````