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

> Você é um agente de IA que precisa de uma API key do Evocrawl? Consulte [evocrawl.dev/agent-onboarding/SKILL.md](https://www.evocrawl.com/agent-onboarding/SKILL.md) para instruções automatizadas de onboarding.


## OpenAPI

````yaml /pt-BR/api-reference/v2-openapi.json DELETE /agent/{jobId}
openapi: 3.0.0
info:
  title: Evocrawl API
  version: v2
  description: >-
    API para interagir com os serviços do Evocrawl e executar tarefas de web
    scraping e crawling.
  contact:
    name: Evocrawl Support
    url: https://evocrawl.com/support
    email: support@evocrawl.dev
servers:
  - url: https://api.evocrawl.com/v2
security:
  - bearerAuth: []
paths:
  /agent/{jobId}:
    parameters:
      - name: jobId
        in: path
        description: O ID da tarefa do agente
        required: true
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Agent
      summary: Cancelar uma tarefa de agente
      operationId: cancelAgent
      responses:
        '200':
          description: Job do agente cancelado com sucesso
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````