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

# Cancelar extracción en lote

> ¿Eres un agente de IA que necesita una API key de Evocrawl? Consulta [evocrawl.dev/agent-onboarding/SKILL.md](https://www.evocrawl.com/agent-onboarding/SKILL.md) para obtener instrucciones de incorporación automatizada.


## OpenAPI

````yaml /es/api-reference/v2-openapi.json DELETE /batch/scrape/{id}
openapi: 3.0.0
info:
  title: Evocrawl API
  version: v2
  description: >-
    API para interactuar con los servicios de Evocrawl y realizar tareas de
    scraping y rastreo web.
  contact:
    name: Evocrawl Support
    url: https://evocrawl.com/support
    email: support@evocrawl.dev
servers:
  - url: https://api.evocrawl.com/v2
security:
  - bearerAuth: []
paths:
  /batch/scrape/{id}:
    parameters:
      - name: id
        in: path
        description: El identificador del trabajo de scraping por lotes
        required: true
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Scraping
      summary: Cancelar un trabajo de rastreo por lotes
      operationId: cancelBatchScrape
      responses:
        '200':
          description: Cancelación completada
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Batch scrape job successfully cancelled.
        '404':
          description: No se encontró el trabajo de scraping por lotes
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Batch scrape job not found.
        '500':
          description: Error del servidor
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: An unexpected error occurred on the server.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````