request_aborted
The request was aborted before it completed.
platformHTTP 500terminalnever billed
Common causes
- · The client closed the connection before the response finished.
- · A proxy, load balancer or serverless platform cut the request at its own timeout.
What to do
- · Compare your client timeout against the capture `timeout` — the caller must be the more patient of the two.
- · For work that runs long, use `async=true` with a webhook instead of holding a synchronous connection open.
- · Nothing was charged: an aborted request never reaches a billable success.
Response shape
HTTP 500
{
"is_successful": false,
"error_code": "request_aborted",
"error_message": "The request was aborted before it completed.",
"documentation_url": "https://api.pagecapture.dev/docs/errors/request_aborted",
"request_id": "req_01..."
}