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

# Cancelar rastreo

> ¿Eres un agente de IA que necesita una clave de API de Firecrawl? Consulta [firecrawl.dev/agent-onboarding/SKILL.md](https://www.firecrawl.dev/agent-onboarding/SKILL.md) para ver las instrucciones de incorporación automatizada.


## OpenAPI

````yaml es/api-reference/v2-openapi.json DELETE /crawl/{id}
openapi: 3.0.0
info:
  contact:
    email: support@firecrawl.dev
    name: Firecrawl Support
    url: https://firecrawl.dev/support
  description: >-
    API para interactuar con los servicios de Firecrawl y realizar tareas de
    scraping y rastreo web.
  title: Firecrawl API
  version: v2
servers:
  - url: https://api.firecrawl.dev/v2
security:
  - bearerAuth: []
paths:
  /crawl/{id}:
    parameters:
      - description: El ID de la tarea de rastreo
        in: path
        name: id
        required: true
        schema:
          format: uuid
          type: string
    delete:
      tags:
        - Crawling
      summary: Cancelar un proceso de rastreo
      operationId: cancelCrawl
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  status:
                    enum:
                      - cancelled
                    example: cancelled
                    type: string
                type: object
          description: Cancelación completada
        '404':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: Crawl job not found.
                    type: string
                type: object
          description: No se encontró el trabajo de rastreo
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: An unexpected error occurred on the server.
                    type: string
                type: object
          description: Error del servidor
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````