Pocket Network · Example Payload

Path_Healthz

Check the health status of a PATH gateway instance

BlockchainRPCDecentralizedWeb3EthereumEVMInfrastructure

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

Top-level fields

namedescriptionrequestresponse

Example Payload

Raw ↑
{
  "name": "PATH Gateway Health Check",
  "description": "Check the health status of a PATH gateway instance",
  "request": {
    "method": "GET",
    "url": "https://eth.rpc.grove.city/healthz",
    "headers": {
      "Target-Service-Id": "eth"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": "ok",
      "services": [
        "eth",
        "polygon",
        "base"
      ]
    }
  }
}