Our API errors all have the following structure

{
  "title":"Validation Failed",
  "status":422,
  "detail":"The content you've sent contains 1 validation errors.",
  "errors":[ 
    {
      "message":"Order amount can't be negative"
    }
  ]
}

The status is the HTTP response code. It can have the values described in the HTTP Response Codes section.