GET
/
error-example
curl --request GET \
  --url https://api.letraz.app/api/v1/error-example/
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "code": "<string>",
  "message": "<string>",
  "details": "<string>",
  "extra": "<string>"
}

Response

500 - application/json
uuid
string
required

The unique identifier for the error response. This is useful for tracking the error in the logs and in Sentry if it is enabled.

code
string
required

The error code that is unique to the error type. This can be used to identify the error type and can be used for debugging.

message
string
required

The error message that is human readable and can be used to understand the error. Usually fit to be displayed to the user.

details
string
required

The error details that can be used to understand the error in more detail. This can be used for debugging purposes.

extra
string
required

The extra data that can be used to understand the error in more detail. This is usually not displayed to the user and might include stacktrace and sensitive information.