OpenZeppelin · Example Payload

Health Check

Example of checking the health status of an OpenZeppelin Relayer instance.

Web3Smart ContractsBlockchainSecurityEthereumDeFiSolidityRelayerMonitoringAuditing

Health Check is an example object payload from OpenZeppelin, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Health Check",
  "description": "Example of checking the health status of an OpenZeppelin Relayer instance.",
  "request": {
    "method": "GET",
    "url": "http://localhost:8080/api/v1/health",
    "headers": {}
  },
  "response": {
    "status": 200,
    "body": {
      "success": true,
      "data": "Alive",
      "message": "Service is healthy"
    }
  }
}