Skip to main content
DELETE
cURL
When to use: Use this endpoint when you need to stop an extraction job that is currently running. This is useful if:
  • You started an extraction job by mistake
  • The extraction is taking longer than expected and you want to stop it
  • You need to free up resources for other operations
Cancellation Requirements: You can only cancel executions that are currently running (status "running").
  • If an execution has already completed or failed, it cannot be canceled
  • Executions that are waiting for a crawl to complete (status "pending" with waiting_for in meta) cannot be canceled until they start running
  • The endpoint will return an error if you attempt to cancel a non-running execution

Request

string
required
Your API key for authentication
string
required
The execution ID returned from POST /v2/extract

Response

string
Status after cancellation. Always "canceled" on success.
string
The execution identifier that was canceled
string | null
ISO 8601 timestamp when the execution was stopped (null if not available)
cURL