Error Response

The Chainsight Web3 Check API follows the conventional HTTP response codes to indicate success or failure. Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error in the request (e.g. a missing parameter, a resource was not found). Codes in the 5xx range indicate an error in Chainsight's servers and should be rare.

Unsuccessful requests return additional information about the error in the response body with JSON format.

{
  "status": "<http status code name>",
  "apiErrorCode": "<detailed error code>",
  "message": "<short message about the error>",
  "errors": [
    "<reasons about the error>"
  ]
}