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

# Annuler le crawl

> Êtes-vous un agent IA ayant besoin d'une clé API Evocrawl ? Consultez [evocrawl.dev/agent-onboarding/SKILL.md](https://www.evocrawl.com/agent-onboarding/SKILL.md) pour obtenir les instructions d'intégration automatisée.


## OpenAPI

````yaml /fr/api-reference/v2-openapi.json DELETE /crawl/{id}
openapi: 3.0.0
info:
  title: Evocrawl API
  version: v2
  description: >-
    API pour interagir avec les services Evocrawl afin d’effectuer des tâches de
    scraping et de crawling web.
  contact:
    name: Evocrawl Support
    url: https://evocrawl.com/support
    email: support@evocrawl.dev
servers:
  - url: https://api.evocrawl.com/v2
security:
  - bearerAuth: []
paths:
  /crawl/{id}:
    parameters:
      - name: id
        in: path
        description: L'ID de la tâche de crawl
        required: true
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Crawling
      summary: Annuler une tâche de crawl
      operationId: cancelCrawl
      responses:
        '200':
          description: Annulation réussie
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - cancelled
                    example: cancelled
        '404':
          description: Tâche de crawl introuvable
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Crawl job not found.
        '500':
          description: Erreur du serveur
          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

````