Skip to content
API Now! is currently in closed beta. We are constantly updating these guides as we release updates!

Internal Server Error

← Back to Overview

This error occurs when the Serverless Engine encounters a database crash, an unexpected code crash, or a server configuration problem.


{
"type": "https://docs.apinow.app/errors/internal-server-error",
"title": "Internal Server Error",
"status": 500,
"code": "INTERNAL_SERVER_ERROR",
"detail": "An unexpected internal server error occurred.",
"instance": "/api/v1/users"
}

For API Consumers (What it means & how to fix)

Section titled “For API Consumers (What it means & how to fix)”
  • Server Issue: This represents a bug or crash on the server side, not a problem with your request. Try again later.
  • Report Issue: Contact the API provider’s support team and include the request path and timestamp.

For API Authors (Domain & API Modeler notes)

Section titled “For API Authors (Domain & API Modeler notes)”
  • Check Server Logs: Retrieve the server logs from the platform dashboard or database console to inspect the stack trace. Common causes include:
    • Database connection timeout or failures.
    • Invalid database migrations or schema mismatches.
    • Runtime edge-case bugs.