Abci query

Query the application for some information.

Query the application for some information.

GEThttps://bnb.nownodes.io/abci_query
Query parameters
Response

Response of the submitted query

Body
error*string
Example: ""
result*object
id*integer
Example: 0
jsonrpc*string
Example: "2.0"
Request
const response = await fetch('https://bnb.nownodes.io/abci_query?path=%2Fa%2Fb%2Fc&data=IHAVENOIDEA', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "error": "",
  "result": {
    "response": {
      "log": "exists",
      "height": "0",
      "proof": "010114FED0DAD959F36091AD761C922ABA3CBF1D8349990101020103011406AA2262E2F448242DF2C2607C3CDC705313EE3B0001149D16177BC71E445476174622EA559715C293740C",
      "value": "61626364",
      "key": "61626364",
      "index": "-1",
      "code": "0"
    }
  },
  "id": 0,
  "jsonrpc": "2.0"
}