internal_application_error

An internal error prevented the request from completing.

platformHTTP 500retryablenever billed

Common causes

  • · An unexpected failure inside the platform.
  • · An error that has no public code yet — anything not in the catalog degrades to this one rather than leaking internals.

What to do

  • · Retry once: many causes are transient even though the code is not marked retryable.
  • · Keep the `request_id` from the response — it is what lets us find the specific job.
  • · Nothing was charged. If it repeats for the same request shape, send us the request_id and the parameters.

Response shape

HTTP 500
{
  "is_successful": false,
  "error_code": "internal_application_error",
  "error_message": "An internal error prevented the request from completing.",
  "documentation_url": "https://api.pagecapture.dev/docs/errors/internal_application_error",
  "request_id": "req_01..."
}