Abci query

ABCIQuery defines a query handler that supports ABCI queries directly to the application, bypassing Tendermint completely. The ABCI query must contain a valid and supported path, including app, custom, p2p, and store.

get

Since: cosmos-sdk 0.46

Query parameters
datastringOptional
pathstringOptional
heightstring · int64Optional
provebooleanOptional
Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/abci_query HTTP/1.1
Host: coreum.nownodes.io
Accept: */*
{
  "code": 1,
  "log": "text",
  "info": "text",
  "index": "text",
  "key": "text",
  "value": "text",
  "proof_ops": {
    "ops": [
      {
        "type": "text",
        "key": "text",
        "data": "text"
      }
    ]
  },
  "height": "text",
  "codespace": "text"
}