Cosmos

AccountInfo queries account info which is common to all account types.

get

Since: cosmos-sdk 0.47

Path parameters
addressanyRequired

address is the account address string.

Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/account_info/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "info": {
    "address": "text",
    "pub_key": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "account_number": "text",
    "sequence": "text"
  }
}

Accounts returns all the existing accounts.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Since: cosmos-sdk 0.43

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/accounts HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "accounts": [
    {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Account returns account details based on address.

get
Path parameters
addressanyRequired

address defines the address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/accounts/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "account": {
    "type_url": "text",
    "value": "Ynl0ZXM="
  }
}

AccountAddressByID returns account address based on account number.

get

Since: cosmos-sdk 0.46.2

Path parameters
idanyRequired

Deprecated, use account_id instead

id is the account number of the address to be queried. This field should have been an uint64 (like all account numbers), and will be updated to uint64 in a future version of the auth query.

Query parameters
account_idanyOptional

account_id is the account number of the address to be queried.

Since: cosmos-sdk 0.47

Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/address_by_id/{id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "account_address": "text"
}

Bech32Prefix queries bech32Prefix

get

Since: cosmos-sdk 0.46

Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/bech32 HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "bech32_prefix": "text"
}

AddressBytesToString converts Account Address bytes to string

get

Since: cosmos-sdk 0.46

Path parameters
address_bytesanyRequired
Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/bech32/{address_bytes} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "address_string": "text"
}

AddressStringToBytes converts Address string to bytes

get

Since: cosmos-sdk 0.46

Path parameters
address_stringanyRequired
Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/bech32/{address_string} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "address_bytes": "Ynl0ZXM="
}

ModuleAccounts returns all the existing module accounts.

get

Since: cosmos-sdk 0.46

Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/module_accounts HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "accounts": [
    {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  ]
}

ModuleAccountByName returns the module account info by module name

get
Path parameters
nameanyRequired
Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/module_accounts/{name} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "account": {
    "type_url": "text",
    "value": "Ynl0ZXM="
  }
}

Params queries all parameters.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/auth/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "max_memo_characters": "text",
    "tx_sig_limit": "text",
    "tx_size_cost_per_byte": "text",
    "sig_verify_cost_ed25519": "text",
    "sig_verify_cost_secp256k1": "text"
  }
}

AllBalances queries the balance of all coins for a single account.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
addressanyRequired

address is the address to query balances for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

resolve_denomanyOptional

resolve_denom is the flag to resolve the denom into a human-readable form from the metadata.

Since: cosmos-sdk 0.50

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/balances/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "balances": [
    {
      "denom": "text",
      "amount": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Balance queries the balance of a single coin for a single account.

get
Path parameters
addressanyRequired

address is the address to query balances for.

Query parameters
denomanyOptional

denom is the coin denom to query balances for.

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/balances/{address}/by_denom HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "balance": {
    "denom": "text",
    "amount": "text"
  }
}

DenomOwners queries for all account addresses that own a particular token denomination.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Since: cosmos-sdk 0.46

Path parameters
denomanyRequired

denom defines the coin denomination to query all account holders for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/denom_owners/{denom} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "denom_owners": [
    {
      "address": "text",
      "balance": {
        "denom": "text",
        "amount": "text"
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

DenomOwnersByQuery queries for all account addresses that own a particular token denomination.

get

Since: cosmos-sdk 0.50.3

Query parameters
denomanyOptional

denom defines the coin denomination to query all account holders for.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/denom_owners_by_query HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "denom_owners": [
    {
      "address": "text",
      "balance": {
        "denom": "text",
        "amount": "text"
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

DenomsMetadata queries the client metadata for all registered coin denominations.

get
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/denoms_metadata HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "metadatas": [
    {
      "description": "text",
      "denom_units": [
        {
          "denom": "text",
          "exponent": 1,
          "aliases": [
            "text"
          ]
        }
      ],
      "base": "text",
      "display": "text",
      "name": "text",
      "symbol": "text",
      "uri": "text",
      "uri_hash": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

DenomMetadata queries the client metadata of a given coin denomination.

get
Path parameters
denomanyRequired

denom is the coin denom to query the metadata for.

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/denoms_metadata/{denom} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "metadata": {
    "description": "text",
    "denom_units": [
      {
        "denom": "text",
        "exponent": 1,
        "aliases": [
          "text"
        ]
      }
    ],
    "base": "text",
    "display": "text",
    "name": "text",
    "symbol": "text",
    "uri": "text",
    "uri_hash": "text"
  }
}

DenomMetadataByQueryString queries the client metadata of a given coin denomination.

get
Query parameters
denomanyOptional

denom is the coin denom to query the metadata for.

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/denoms_metadata_by_query_string HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "metadata": {
    "description": "text",
    "denom_units": [
      {
        "denom": "text",
        "exponent": 1,
        "aliases": [
          "text"
        ]
      }
    ],
    "base": "text",
    "display": "text",
    "name": "text",
    "symbol": "text",
    "uri": "text",
    "uri_hash": "text"
  }
}

Params queries the parameters of x/bank module.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "send_enabled": [
      {
        "denom": "text",
        "enabled": true
      }
    ],
    "default_send_enabled": true
  }
}

SendEnabled queries for SendEnabled entries.

get

This query only returns denominations that have specific SendEnabled settings. Any denomination that does not have a specific setting will use the default params.default_send_enabled, and will not be returned by this query.

Since: cosmos-sdk 0.47

Query parameters
denomsanyOptional

denoms is the specific denoms you want look up. Leave empty to get all entries.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/send_enabled HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "send_enabled": [
    {
      "denom": "text",
      "enabled": true
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

SpendableBalances queries the spendable balance of all coins for a single account.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Since: cosmos-sdk 0.46

Path parameters
addressanyRequired

address is the address to query spendable balances for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/spendable_balances/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "balances": [
    {
      "denom": "text",
      "amount": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

SpendableBalanceByDenom queries the spendable balance of a single denom for a single account.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Since: cosmos-sdk 0.47

Path parameters
addressanyRequired

address is the address to query balances for.

Query parameters
denomanyOptional

denom is the coin denom to query balances for.

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/spendable_balances/{address}/by_denom HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "balance": {
    "denom": "text",
    "amount": "text"
  }
}

TotalSupply queries the total supply of all coins.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/supply HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "supply": [
    {
      "denom": "text",
      "amount": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

SupplyOf queries the supply of a single coin.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Query parameters
denomanyOptional

denom is the coin denom to query balances for.

Responses
200
A successful response.
application/json
get
GET /cosmos/bank/v1beta1/supply/by_denom HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "amount": {
    "denom": "text",
    "amount": "text"
  }
}

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
dataanyOptional
pathanyOptional
heightanyOptional
proveanyOptional
Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/abci_query HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "code": 1,
  "log": "text",
  "info": "text",
  "index": "text",
  "key": "Ynl0ZXM=",
  "value": "Ynl0ZXM=",
  "proof_ops": {
    "ops": [
      {
        "type": "text",
        "key": "Ynl0ZXM=",
        "data": "Ynl0ZXM="
      }
    ]
  },
  "height": "text",
  "codespace": "text"
}

GetLatestBlock returns the latest block.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/blocks/latest HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "block_id": {
    "hash": "Ynl0ZXM=",
    "part_set_header": {
      "total": 1,
      "hash": "Ynl0ZXM="
    }
  },
  "block": {
    "header": {
      "version": {
        "block": "text",
        "app": "text"
      },
      "chain_id": "text",
      "height": "text",
      "time": "2025-07-13T22:50:53.253Z",
      "last_block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "last_commit_hash": "Ynl0ZXM=",
      "data_hash": "Ynl0ZXM=",
      "validators_hash": "Ynl0ZXM=",
      "next_validators_hash": "Ynl0ZXM=",
      "consensus_hash": "Ynl0ZXM=",
      "app_hash": "Ynl0ZXM=",
      "last_results_hash": "Ynl0ZXM=",
      "evidence_hash": "Ynl0ZXM=",
      "proposer_address": "Ynl0ZXM="
    },
    "data": {
      "txs": [
        "Ynl0ZXM="
      ]
    },
    "evidence": {
      "evidence": [
        {
          "duplicate_vote_evidence": {
            "vote_a": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "vote_b": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "total_voting_power": "text",
            "validator_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          },
          "light_client_attack_evidence": {
            "conflicting_block": {
              "signed_header": {
                "header": {
                  "version": {
                    "block": "text",
                    "app": "text"
                  },
                  "chain_id": "text",
                  "height": "text",
                  "time": "2025-07-13T22:50:53.253Z",
                  "last_block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "last_commit_hash": "Ynl0ZXM=",
                  "data_hash": "Ynl0ZXM=",
                  "validators_hash": "Ynl0ZXM=",
                  "next_validators_hash": "Ynl0ZXM=",
                  "consensus_hash": "Ynl0ZXM=",
                  "app_hash": "Ynl0ZXM=",
                  "last_results_hash": "Ynl0ZXM=",
                  "evidence_hash": "Ynl0ZXM=",
                  "proposer_address": "Ynl0ZXM="
                },
                "commit": {
                  "height": "text",
                  "round": 1,
                  "block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "signatures": [
                    {
                      "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
                      "validator_address": "Ynl0ZXM=",
                      "timestamp": "2025-07-13T22:50:53.253Z",
                      "signature": "Ynl0ZXM="
                    }
                  ]
                }
              },
              "validator_set": {
                "validators": [
                  {
                    "address": "Ynl0ZXM=",
                    "pub_key": {
                      "ed25519": "Ynl0ZXM=",
                      "secp256k1": "Ynl0ZXM="
                    },
                    "voting_power": "text",
                    "proposer_priority": "text"
                  }
                ],
                "proposer": {
                  "address": "Ynl0ZXM=",
                  "pub_key": {
                    "ed25519": "Ynl0ZXM=",
                    "secp256k1": "Ynl0ZXM="
                  },
                  "voting_power": "text",
                  "proposer_priority": "text"
                },
                "total_voting_power": "text"
              }
            },
            "common_height": "text",
            "byzantine_validators": [
              {
                "address": "Ynl0ZXM=",
                "pub_key": {
                  "ed25519": "Ynl0ZXM=",
                  "secp256k1": "Ynl0ZXM="
                },
                "voting_power": "text",
                "proposer_priority": "text"
              }
            ],
            "total_voting_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          }
        }
      ]
    },
    "last_commit": {
      "height": "text",
      "round": 1,
      "block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "signatures": [
        {
          "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
          "validator_address": "Ynl0ZXM=",
          "timestamp": "2025-07-13T22:50:53.253Z",
          "signature": "Ynl0ZXM="
        }
      ]
    }
  },
  "sdk_block": {
    "header": {
      "version": {
        "block": "text",
        "app": "text"
      },
      "chain_id": "text",
      "height": "text",
      "time": "2025-07-13T22:50:53.253Z",
      "last_block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "last_commit_hash": "Ynl0ZXM=",
      "data_hash": "Ynl0ZXM=",
      "validators_hash": "Ynl0ZXM=",
      "next_validators_hash": "Ynl0ZXM=",
      "consensus_hash": "Ynl0ZXM=",
      "app_hash": "Ynl0ZXM=",
      "last_results_hash": "Ynl0ZXM=",
      "evidence_hash": "Ynl0ZXM=",
      "proposer_address": "text"
    },
    "data": {
      "txs": [
        "Ynl0ZXM="
      ]
    },
    "evidence": {
      "evidence": [
        {
          "duplicate_vote_evidence": {
            "vote_a": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "vote_b": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "total_voting_power": "text",
            "validator_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          },
          "light_client_attack_evidence": {
            "conflicting_block": {
              "signed_header": {
                "header": {
                  "version": {
                    "block": "text",
                    "app": "text"
                  },
                  "chain_id": "text",
                  "height": "text",
                  "time": "2025-07-13T22:50:53.253Z",
                  "last_block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "last_commit_hash": "Ynl0ZXM=",
                  "data_hash": "Ynl0ZXM=",
                  "validators_hash": "Ynl0ZXM=",
                  "next_validators_hash": "Ynl0ZXM=",
                  "consensus_hash": "Ynl0ZXM=",
                  "app_hash": "Ynl0ZXM=",
                  "last_results_hash": "Ynl0ZXM=",
                  "evidence_hash": "Ynl0ZXM=",
                  "proposer_address": "Ynl0ZXM="
                },
                "commit": {
                  "height": "text",
                  "round": 1,
                  "block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "signatures": [
                    {
                      "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
                      "validator_address": "Ynl0ZXM=",
                      "timestamp": "2025-07-13T22:50:53.253Z",
                      "signature": "Ynl0ZXM="
                    }
                  ]
                }
              },
              "validator_set": {
                "validators": [
                  {
                    "address": "Ynl0ZXM=",
                    "pub_key": {
                      "ed25519": "Ynl0ZXM=",
                      "secp256k1": "Ynl0ZXM="
                    },
                    "voting_power": "text",
                    "proposer_priority": "text"
                  }
                ],
                "proposer": {
                  "address": "Ynl0ZXM=",
                  "pub_key": {
                    "ed25519": "Ynl0ZXM=",
                    "secp256k1": "Ynl0ZXM="
                  },
                  "voting_power": "text",
                  "proposer_priority": "text"
                },
                "total_voting_power": "text"
              }
            },
            "common_height": "text",
            "byzantine_validators": [
              {
                "address": "Ynl0ZXM=",
                "pub_key": {
                  "ed25519": "Ynl0ZXM=",
                  "secp256k1": "Ynl0ZXM="
                },
                "voting_power": "text",
                "proposer_priority": "text"
              }
            ],
            "total_voting_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          }
        }
      ]
    },
    "last_commit": {
      "height": "text",
      "round": 1,
      "block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "signatures": [
        {
          "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
          "validator_address": "Ynl0ZXM=",
          "timestamp": "2025-07-13T22:50:53.253Z",
          "signature": "Ynl0ZXM="
        }
      ]
    }
  }
}

GetBlockByHeight queries block for given height.

get
Path parameters
heightanyRequired
Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/blocks/{height} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "block_id": {
    "hash": "Ynl0ZXM=",
    "part_set_header": {
      "total": 1,
      "hash": "Ynl0ZXM="
    }
  },
  "block": {
    "header": {
      "version": {
        "block": "text",
        "app": "text"
      },
      "chain_id": "text",
      "height": "text",
      "time": "2025-07-13T22:50:53.253Z",
      "last_block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "last_commit_hash": "Ynl0ZXM=",
      "data_hash": "Ynl0ZXM=",
      "validators_hash": "Ynl0ZXM=",
      "next_validators_hash": "Ynl0ZXM=",
      "consensus_hash": "Ynl0ZXM=",
      "app_hash": "Ynl0ZXM=",
      "last_results_hash": "Ynl0ZXM=",
      "evidence_hash": "Ynl0ZXM=",
      "proposer_address": "Ynl0ZXM="
    },
    "data": {
      "txs": [
        "Ynl0ZXM="
      ]
    },
    "evidence": {
      "evidence": [
        {
          "duplicate_vote_evidence": {
            "vote_a": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "vote_b": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "total_voting_power": "text",
            "validator_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          },
          "light_client_attack_evidence": {
            "conflicting_block": {
              "signed_header": {
                "header": {
                  "version": {
                    "block": "text",
                    "app": "text"
                  },
                  "chain_id": "text",
                  "height": "text",
                  "time": "2025-07-13T22:50:53.253Z",
                  "last_block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "last_commit_hash": "Ynl0ZXM=",
                  "data_hash": "Ynl0ZXM=",
                  "validators_hash": "Ynl0ZXM=",
                  "next_validators_hash": "Ynl0ZXM=",
                  "consensus_hash": "Ynl0ZXM=",
                  "app_hash": "Ynl0ZXM=",
                  "last_results_hash": "Ynl0ZXM=",
                  "evidence_hash": "Ynl0ZXM=",
                  "proposer_address": "Ynl0ZXM="
                },
                "commit": {
                  "height": "text",
                  "round": 1,
                  "block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "signatures": [
                    {
                      "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
                      "validator_address": "Ynl0ZXM=",
                      "timestamp": "2025-07-13T22:50:53.253Z",
                      "signature": "Ynl0ZXM="
                    }
                  ]
                }
              },
              "validator_set": {
                "validators": [
                  {
                    "address": "Ynl0ZXM=",
                    "pub_key": {
                      "ed25519": "Ynl0ZXM=",
                      "secp256k1": "Ynl0ZXM="
                    },
                    "voting_power": "text",
                    "proposer_priority": "text"
                  }
                ],
                "proposer": {
                  "address": "Ynl0ZXM=",
                  "pub_key": {
                    "ed25519": "Ynl0ZXM=",
                    "secp256k1": "Ynl0ZXM="
                  },
                  "voting_power": "text",
                  "proposer_priority": "text"
                },
                "total_voting_power": "text"
              }
            },
            "common_height": "text",
            "byzantine_validators": [
              {
                "address": "Ynl0ZXM=",
                "pub_key": {
                  "ed25519": "Ynl0ZXM=",
                  "secp256k1": "Ynl0ZXM="
                },
                "voting_power": "text",
                "proposer_priority": "text"
              }
            ],
            "total_voting_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          }
        }
      ]
    },
    "last_commit": {
      "height": "text",
      "round": 1,
      "block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "signatures": [
        {
          "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
          "validator_address": "Ynl0ZXM=",
          "timestamp": "2025-07-13T22:50:53.253Z",
          "signature": "Ynl0ZXM="
        }
      ]
    }
  },
  "sdk_block": {
    "header": {
      "version": {
        "block": "text",
        "app": "text"
      },
      "chain_id": "text",
      "height": "text",
      "time": "2025-07-13T22:50:53.253Z",
      "last_block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "last_commit_hash": "Ynl0ZXM=",
      "data_hash": "Ynl0ZXM=",
      "validators_hash": "Ynl0ZXM=",
      "next_validators_hash": "Ynl0ZXM=",
      "consensus_hash": "Ynl0ZXM=",
      "app_hash": "Ynl0ZXM=",
      "last_results_hash": "Ynl0ZXM=",
      "evidence_hash": "Ynl0ZXM=",
      "proposer_address": "text"
    },
    "data": {
      "txs": [
        "Ynl0ZXM="
      ]
    },
    "evidence": {
      "evidence": [
        {
          "duplicate_vote_evidence": {
            "vote_a": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "vote_b": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "total_voting_power": "text",
            "validator_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          },
          "light_client_attack_evidence": {
            "conflicting_block": {
              "signed_header": {
                "header": {
                  "version": {
                    "block": "text",
                    "app": "text"
                  },
                  "chain_id": "text",
                  "height": "text",
                  "time": "2025-07-13T22:50:53.253Z",
                  "last_block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "last_commit_hash": "Ynl0ZXM=",
                  "data_hash": "Ynl0ZXM=",
                  "validators_hash": "Ynl0ZXM=",
                  "next_validators_hash": "Ynl0ZXM=",
                  "consensus_hash": "Ynl0ZXM=",
                  "app_hash": "Ynl0ZXM=",
                  "last_results_hash": "Ynl0ZXM=",
                  "evidence_hash": "Ynl0ZXM=",
                  "proposer_address": "Ynl0ZXM="
                },
                "commit": {
                  "height": "text",
                  "round": 1,
                  "block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "signatures": [
                    {
                      "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
                      "validator_address": "Ynl0ZXM=",
                      "timestamp": "2025-07-13T22:50:53.253Z",
                      "signature": "Ynl0ZXM="
                    }
                  ]
                }
              },
              "validator_set": {
                "validators": [
                  {
                    "address": "Ynl0ZXM=",
                    "pub_key": {
                      "ed25519": "Ynl0ZXM=",
                      "secp256k1": "Ynl0ZXM="
                    },
                    "voting_power": "text",
                    "proposer_priority": "text"
                  }
                ],
                "proposer": {
                  "address": "Ynl0ZXM=",
                  "pub_key": {
                    "ed25519": "Ynl0ZXM=",
                    "secp256k1": "Ynl0ZXM="
                  },
                  "voting_power": "text",
                  "proposer_priority": "text"
                },
                "total_voting_power": "text"
              }
            },
            "common_height": "text",
            "byzantine_validators": [
              {
                "address": "Ynl0ZXM=",
                "pub_key": {
                  "ed25519": "Ynl0ZXM=",
                  "secp256k1": "Ynl0ZXM="
                },
                "voting_power": "text",
                "proposer_priority": "text"
              }
            ],
            "total_voting_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          }
        }
      ]
    },
    "last_commit": {
      "height": "text",
      "round": 1,
      "block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "signatures": [
        {
          "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
          "validator_address": "Ynl0ZXM=",
          "timestamp": "2025-07-13T22:50:53.253Z",
          "signature": "Ynl0ZXM="
        }
      ]
    }
  }
}

GetNodeInfo queries the current node info.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/node_info HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "default_node_info": {
    "protocol_version": {
      "p2p": "text",
      "block": "text",
      "app": "text"
    },
    "default_node_id": "text",
    "listen_addr": "text",
    "network": "text",
    "version": "text",
    "channels": "Ynl0ZXM=",
    "moniker": "text",
    "other": {
      "tx_index": "text",
      "rpc_address": "text"
    }
  },
  "application_version": {
    "name": "text",
    "app_name": "text",
    "version": "text",
    "git_commit": "text",
    "build_tags": "text",
    "go_version": "text",
    "build_deps": [
      {
        "path": "text",
        "version": "text",
        "sum": "text"
      }
    ],
    "cosmos_sdk_version": "text"
  }
}

GetSyncing queries node syncing.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/syncing HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "syncing": true
}

GetLatestValidatorSet queries latest validator-set.

get
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/validatorsets/latest HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "block_height": "text",
  "validators": [
    {
      "address": "text",
      "pub_key": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "voting_power": "text",
      "proposer_priority": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GetValidatorSetByHeight queries validator-set at a given height.

get
Path parameters
heightanyRequired
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/base/tendermint/v1beta1/validatorsets/{height} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "block_height": "text",
  "validators": [
    {
      "address": "text",
      "pub_key": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "voting_power": "text",
      "proposer_priority": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Config queries for the operator configuration.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/base/node/v1beta1/config HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "minimum_gas_price": "text",
  "pruning_keep_recent": "text",
  "pruning_interval": "text",
  "halt_height": "text"
}

Status queries for the node status.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/base/node/v1beta1/status HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "earliest_store_height": "text",
  "height": "text",
  "timestamp": "2025-07-13T22:50:53.253Z",
  "app_hash": "Ynl0ZXM=",
  "validator_hash": "Ynl0ZXM="
}

CommunityPool queries the community pool coins.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/community_pool HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "pool": [
    {
      "denom": "text",
      "amount": "text"
    }
  ]
}

DelegationTotalRewards queries the total rewards accrued by each validator.

get
Path parameters
delegator_addressanyRequired

delegator_address defines the delegator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "rewards": [
    {
      "validator_address": "text",
      "reward": [
        {
          "denom": "text",
          "amount": "text"
        }
      ]
    }
  ],
  "total": [
    {
      "denom": "text",
      "amount": "text"
    }
  ]
}

DelegationRewards queries the total rewards accrued by a delegation.

get
Path parameters
delegator_addressanyRequired

delegator_address defines the delegator address to query for.

validator_addressanyRequired

validator_address defines the validator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/delegators/{delegator_address}/rewards/{validator_address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "rewards": [
    {
      "denom": "text",
      "amount": "text"
    }
  ]
}

DelegatorValidators queries the validators of a delegator.

get
Path parameters
delegator_addressanyRequired

delegator_address defines the delegator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/delegators/{delegator_address}/validators HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "validators": [
    "text"
  ]
}

DelegatorWithdrawAddress queries withdraw address of a delegator.

get
Path parameters
delegator_addressanyRequired

delegator_address defines the delegator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/delegators/{delegator_address}/withdraw_address HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "withdraw_address": "text"
}

Params queries params of the distribution module.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "community_tax": "text",
    "base_proposer_reward": "text",
    "bonus_proposer_reward": "text",
    "withdraw_addr_enabled": true
  }
}

ValidatorDistributionInfo queries validator commission and self-delegation rewards for validator

get
Path parameters
validator_addressanyRequired

validator_address defines the validator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/validators/{validator_address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "operator_address": "text",
  "self_bond_rewards": [
    {
      "denom": "text",
      "amount": "text"
    }
  ],
  "commission": [
    {
      "denom": "text",
      "amount": "text"
    }
  ]
}

ValidatorCommission queries accumulated commission for a validator.

get
Path parameters
validator_addressanyRequired

validator_address defines the validator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/validators/{validator_address}/commission HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "commission": {
    "commission": [
      {
        "denom": "text",
        "amount": "text"
      }
    ]
  }
}

ValidatorOutstandingRewards queries rewards of a validator address.

get
Path parameters
validator_addressanyRequired

validator_address defines the validator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/validators/{validator_address}/outstanding_rewards HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "rewards": {
    "rewards": [
      {
        "denom": "text",
        "amount": "text"
      }
    ]
  }
}

ValidatorSlashes queries slash events of a validator.

get
Path parameters
validator_addressanyRequired

validator_address defines the validator address to query for.

Query parameters
starting_heightanyOptional

starting_height defines the optional starting height to query the slashes.

ending_heightanyOptional

starting_height defines the optional ending height to query the slashes.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/distribution/v1beta1/validators/{validator_address}/slashes HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "slashes": [
    {
      "validator_period": "text",
      "fraction": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

AllEvidence queries all evidence.

get
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/evidence/v1beta1/evidence HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "evidence": [
    {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Evidence queries evidence based on evidence hash.

get
Path parameters
hashanyRequired

hash defines the evidence hash of the requested evidence.

Since: cosmos-sdk 0.47

Query parameters
evidence_hashanyOptional

evidence_hash defines the hash of the requested evidence. Deprecated: Use hash, a HEX encoded string, instead.

Responses
200
A successful response.
application/json
get
GET /cosmos/evidence/v1beta1/evidence/{hash} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "evidence": {
    "type_url": "text",
    "value": "Ynl0ZXM="
  }
}

Params queries all parameters of the gov module.

get
Path parameters
params_typeanyRequired

params_type defines which parameters to query for, can be one of "voting", "tallying" or "deposit".

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/params/{params_type} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "voting_params": {
    "voting_period": "text"
  },
  "deposit_params": {
    "min_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "max_deposit_period": "text"
  },
  "tally_params": {
    "quorum": "Ynl0ZXM=",
    "threshold": "Ynl0ZXM=",
    "veto_threshold": "Ynl0ZXM="
  }
}

Proposals queries all proposals based on given status.

get
Query parameters
proposal_statusanyOptional

proposal_status defines the status of the proposals.

  • PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.
  • PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit period.
  • PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting period.
  • PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has passed.
  • PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has been rejected.
  • PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has failed.
voteranyOptional

voter defines the voter address for the proposals.

depositoranyOptional

depositor defines the deposit addresses from the proposals.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "proposals": [
    {
      "proposal_id": "text",
      "content": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "status": "PROPOSAL_STATUS_UNSPECIFIED",
      "final_tally_result": {
        "yes": "text",
        "abstain": "text",
        "no": "text",
        "no_with_veto": "text"
      },
      "submit_time": "2025-07-13T22:50:53.253Z",
      "deposit_end_time": "2025-07-13T22:50:53.253Z",
      "total_deposit": [
        {
          "denom": "text",
          "amount": "text"
        }
      ],
      "voting_start_time": "2025-07-13T22:50:53.253Z",
      "voting_end_time": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Proposal queries proposal details based on ProposalID.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals/{proposal_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "proposal": {
    "proposal_id": "text",
    "content": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "status": "PROPOSAL_STATUS_UNSPECIFIED",
    "final_tally_result": {
      "yes": "text",
      "abstain": "text",
      "no": "text",
      "no_with_veto": "text"
    },
    "submit_time": "2025-07-13T22:50:53.253Z",
    "deposit_end_time": "2025-07-13T22:50:53.253Z",
    "total_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "voting_start_time": "2025-07-13T22:50:53.253Z",
    "voting_end_time": "2025-07-13T22:50:53.253Z"
  }
}

Deposits queries all deposits of a single proposal.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "deposits": [
    {
      "proposal_id": "text",
      "depositor": "text",
      "amount": [
        {
          "denom": "text",
          "amount": "text"
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Deposit queries single deposit information based on proposalID, depositor address.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

depositoranyRequired

depositor defines the deposit addresses from the proposals.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals/{proposal_id}/deposits/{depositor} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "deposit": {
    "proposal_id": "text",
    "depositor": "text",
    "amount": [
      {
        "denom": "text",
        "amount": "text"
      }
    ]
  }
}

TallyResult queries the tally of a proposal vote.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals/{proposal_id}/tally HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "tally": {
    "yes": "text",
    "abstain": "text",
    "no": "text",
    "no_with_veto": "text"
  }
}

Votes queries votes of a given proposal.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals/{proposal_id}/votes HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "votes": [
    {
      "proposal_id": "text",
      "voter": "text",
      "option": "VOTE_OPTION_UNSPECIFIED",
      "options": [
        {
          "option": "VOTE_OPTION_UNSPECIFIED",
          "weight": "text"
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Vote queries voted information based on proposalID, voterAddr.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

voteranyRequired

voter defines the voter address for the proposals.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1beta1/proposals/{proposal_id}/votes/{voter} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "vote": {
    "proposal_id": "text",
    "voter": "text",
    "option": "VOTE_OPTION_UNSPECIFIED",
    "options": [
      {
        "option": "VOTE_OPTION_UNSPECIFIED",
        "weight": "text"
      }
    ]
  }
}

Constitution queries the chain's constitution.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/constitution HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "constitution": "text"
}

Params queries all parameters of the gov module.

get
Path parameters
params_typeanyRequired

params_type defines which parameters to query for, can be one of "voting", "tallying" or "deposit".

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/params/{params_type} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "voting_params": {
    "voting_period": "text"
  },
  "deposit_params": {
    "min_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "max_deposit_period": "text"
  },
  "tally_params": {
    "quorum": "text",
    "threshold": "text",
    "veto_threshold": "text"
  },
  "params": {
    "min_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "max_deposit_period": "text",
    "voting_period": "text",
    "quorum": "text",
    "threshold": "text",
    "veto_threshold": "text",
    "min_initial_deposit_ratio": "text",
    "proposal_cancel_ratio": "text",
    "proposal_cancel_dest": "text",
    "expedited_voting_period": "text",
    "expedited_threshold": "text",
    "expedited_min_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "burn_vote_quorum": true,
    "burn_proposal_deposit_prevote": true,
    "burn_vote_veto": true,
    "min_deposit_ratio": "text"
  }
}

Proposals queries all proposals based on given status.

get
Query parameters
proposal_statusanyOptional

proposal_status defines the status of the proposals.

  • PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.
  • PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit period.
  • PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting period.
  • PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has passed.
  • PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has been rejected.
  • PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has failed.
voteranyOptional

voter defines the voter address for the proposals.

depositoranyOptional

depositor defines the deposit addresses from the proposals.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "proposals": [
    {
      "id": "text",
      "messages": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "status": "PROPOSAL_STATUS_UNSPECIFIED",
      "final_tally_result": {
        "yes_count": "text",
        "abstain_count": "text",
        "no_count": "text",
        "no_with_veto_count": "text"
      },
      "submit_time": "2025-07-13T22:50:53.253Z",
      "deposit_end_time": "2025-07-13T22:50:53.253Z",
      "total_deposit": [
        {
          "denom": "text",
          "amount": "text"
        }
      ],
      "voting_start_time": "2025-07-13T22:50:53.253Z",
      "voting_end_time": "2025-07-13T22:50:53.253Z",
      "metadata": "text",
      "title": "text",
      "summary": "text",
      "proposer": "text",
      "expedited": true,
      "failed_reason": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Proposal queries proposal details based on ProposalID.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals/{proposal_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "proposal": {
    "id": "text",
    "messages": [
      {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    ],
    "status": "PROPOSAL_STATUS_UNSPECIFIED",
    "final_tally_result": {
      "yes_count": "text",
      "abstain_count": "text",
      "no_count": "text",
      "no_with_veto_count": "text"
    },
    "submit_time": "2025-07-13T22:50:53.253Z",
    "deposit_end_time": "2025-07-13T22:50:53.253Z",
    "total_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "voting_start_time": "2025-07-13T22:50:53.253Z",
    "voting_end_time": "2025-07-13T22:50:53.253Z",
    "metadata": "text",
    "title": "text",
    "summary": "text",
    "proposer": "text",
    "expedited": true,
    "failed_reason": "text"
  }
}

Deposits queries all deposits of a single proposal.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals/{proposal_id}/deposits HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "deposits": [
    {
      "proposal_id": "text",
      "depositor": "text",
      "amount": [
        {
          "denom": "text",
          "amount": "text"
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Deposit queries single deposit information based on proposalID, depositAddr.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

depositoranyRequired

depositor defines the deposit addresses from the proposals.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals/{proposal_id}/deposits/{depositor} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "deposit": {
    "proposal_id": "text",
    "depositor": "text",
    "amount": [
      {
        "denom": "text",
        "amount": "text"
      }
    ]
  }
}

TallyResult queries the tally of a proposal vote.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals/{proposal_id}/tally HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "tally": {
    "yes_count": "text",
    "abstain_count": "text",
    "no_count": "text",
    "no_with_veto_count": "text"
  }
}

Votes queries votes of a given proposal.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals/{proposal_id}/votes HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "votes": [
    {
      "proposal_id": "text",
      "voter": "text",
      "options": [
        {
          "option": "VOTE_OPTION_UNSPECIFIED",
          "weight": "text"
        }
      ],
      "metadata": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Vote queries voted information based on proposalID, voterAddr.

get
Path parameters
proposal_idanyRequired

proposal_id defines the unique id of the proposal.

voteranyRequired

voter defines the voter address for the proposals.

Responses
200
A successful response.
application/json
get
GET /cosmos/gov/v1/proposals/{proposal_id}/votes/{voter} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "vote": {
    "proposal_id": "text",
    "voter": "text",
    "options": [
      {
        "option": "VOTE_OPTION_UNSPECIFIED",
        "weight": "text"
      }
    ],
    "metadata": "text"
  }
}

AnnualProvisions current minting annual provisions value.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/mint/v1beta1/annual_provisions HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "annual_provisions": "Ynl0ZXM="
}

Inflation returns the current minting inflation value.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/mint/v1beta1/inflation HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "inflation": "Ynl0ZXM="
}

Params returns the total set of minting parameters.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/mint/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "mint_denom": "text",
    "inflation_rate_change": "text",
    "inflation_max": "text",
    "inflation_min": "text",
    "goal_bonded": "text",
    "blocks_per_year": "text"
  }
}

Params queries a specific parameter of a module, given its subspace and key.

get
Query parameters
subspaceanyOptional

subspace defines the module to query the parameter for.

keyanyOptional

key defines the key of the parameter in the subspace.

Responses
200
A successful response.
application/json
get
GET /cosmos/params/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "param": {
    "subspace": "text",
    "key": "text",
    "value": "text"
  }
}

Subspaces queries for all registered subspaces and all keys for a subspace.

get

Since: cosmos-sdk 0.46

Responses
200
A successful response.
application/json
get
GET /cosmos/params/v1beta1/subspaces HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "subspaces": [
    {
      "subspace": "text",
      "keys": [
        "text"
      ]
    }
  ]
}

Params queries the parameters of slashing module

get
Responses
200
A successful response.
application/json
get
GET /cosmos/slashing/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "signed_blocks_window": "text",
    "min_signed_per_window": "Ynl0ZXM=",
    "downtime_jail_duration": "text",
    "slash_fraction_double_sign": "Ynl0ZXM=",
    "slash_fraction_downtime": "Ynl0ZXM="
  }
}

SigningInfos queries signing info of all validators

get
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/slashing/v1beta1/signing_infos HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "info": [
    {
      "address": "text",
      "start_height": "text",
      "index_offset": "text",
      "jailed_until": "2025-07-13T22:50:53.253Z",
      "tombstoned": true,
      "missed_blocks_counter": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

SigningInfo queries the signing info of given cons address

get
Path parameters
cons_addressanyRequired

cons_address is the address to query signing info of

Responses
200
A successful response.
application/json
get
GET /cosmos/slashing/v1beta1/signing_infos/{cons_address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "val_signing_info": {
    "address": "text",
    "start_height": "text",
    "index_offset": "text",
    "jailed_until": "2025-07-13T22:50:53.253Z",
    "tombstoned": true,
    "missed_blocks_counter": "text"
  }
}

DelegatorDelegations queries all delegations of a given delegator address.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
delegator_addranyRequired

delegator_addr defines the delegator address to query for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/delegations/{delegator_addr} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "delegation_responses": [
    {
      "delegation": {
        "delegator_address": "text",
        "validator_address": "text",
        "shares": "text"
      },
      "balance": {
        "denom": "text",
        "amount": "text"
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Redelegations queries redelegations of given address.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
delegator_addranyRequired

delegator_addr defines the delegator address to query for.

Query parameters
src_validator_addranyOptional

src_validator_addr defines the validator address to redelegate from.

dst_validator_addranyOptional

dst_validator_addr defines the validator address to redelegate to.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/delegators/{delegator_addr}/redelegations HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "redelegation_responses": [
    {
      "redelegation": {
        "delegator_address": "text",
        "validator_src_address": "text",
        "validator_dst_address": "text",
        "entries": [
          {
            "creation_height": "text",
            "completion_time": "2025-07-13T22:50:53.253Z",
            "initial_balance": "text",
            "shares_dst": "text",
            "unbonding_id": "text",
            "unbonding_on_hold_ref_count": "text"
          }
        ]
      },
      "entries": [
        {
          "redelegation_entry": {
            "creation_height": "text",
            "completion_time": "2025-07-13T22:50:53.253Z",
            "initial_balance": "text",
            "shares_dst": "text",
            "unbonding_id": "text",
            "unbonding_on_hold_ref_count": "text"
          },
          "balance": "text"
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

DelegatorUnbondingDelegations queries all unbonding delegations of a given delegator address.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
delegator_addranyRequired

delegator_addr defines the delegator address to query for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/delegators/{delegator_addr}/unbonding_delegations HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "unbonding_responses": [
    {
      "delegator_address": "text",
      "validator_address": "text",
      "entries": [
        {
          "creation_height": "text",
          "completion_time": "2025-07-13T22:50:53.253Z",
          "initial_balance": "text",
          "balance": "text",
          "unbonding_id": "text",
          "unbonding_on_hold_ref_count": "text"
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

DelegatorValidators queries all validators info for given delegator address.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
delegator_addranyRequired

delegator_addr defines the delegator address to query for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/delegators/{delegator_addr}/validators HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "validators": [
    {
      "operator_address": "text",
      "consensus_pubkey": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "jailed": true,
      "status": "BOND_STATUS_UNSPECIFIED",
      "tokens": "text",
      "delegator_shares": "text",
      "description": {
        "moniker": "text",
        "identity": "text",
        "website": "text",
        "security_contact": "text",
        "details": "text"
      },
      "unbonding_height": "text",
      "unbonding_time": "2025-07-13T22:50:53.253Z",
      "commission": {
        "commission_rates": {
          "rate": "text",
          "max_rate": "text",
          "max_change_rate": "text"
        },
        "update_time": "2025-07-13T22:50:53.253Z"
      },
      "min_self_delegation": "text",
      "unbonding_on_hold_ref_count": "text",
      "unbonding_ids": [
        "text"
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

DelegatorValidator queries validator info for given delegator validator pair.

get
Path parameters
delegator_addranyRequired

delegator_addr defines the delegator address to query for.

validator_addranyRequired

validator_addr defines the validator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/delegators/{delegator_addr}/validators/{validator_addr} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "validator": {
    "operator_address": "text",
    "consensus_pubkey": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "jailed": true,
    "status": "BOND_STATUS_UNSPECIFIED",
    "tokens": "text",
    "delegator_shares": "text",
    "description": {
      "moniker": "text",
      "identity": "text",
      "website": "text",
      "security_contact": "text",
      "details": "text"
    },
    "unbonding_height": "text",
    "unbonding_time": "2025-07-13T22:50:53.253Z",
    "commission": {
      "commission_rates": {
        "rate": "text",
        "max_rate": "text",
        "max_change_rate": "text"
      },
      "update_time": "2025-07-13T22:50:53.253Z"
    },
    "min_self_delegation": "text",
    "unbonding_on_hold_ref_count": "text",
    "unbonding_ids": [
      "text"
    ]
  }
}

HistoricalInfo queries the historical info for given height.

get
Path parameters
heightanyRequired

height defines at which height to query the historical info.

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/historical_info/{height} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "hist": {
    "header": {
      "version": {
        "block": "text",
        "app": "text"
      },
      "chain_id": "text",
      "height": "text",
      "time": "2025-07-13T22:50:53.253Z",
      "last_block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "last_commit_hash": "Ynl0ZXM=",
      "data_hash": "Ynl0ZXM=",
      "validators_hash": "Ynl0ZXM=",
      "next_validators_hash": "Ynl0ZXM=",
      "consensus_hash": "Ynl0ZXM=",
      "app_hash": "Ynl0ZXM=",
      "last_results_hash": "Ynl0ZXM=",
      "evidence_hash": "Ynl0ZXM=",
      "proposer_address": "Ynl0ZXM="
    },
    "valset": [
      {
        "operator_address": "text",
        "consensus_pubkey": {
          "type_url": "text",
          "value": "Ynl0ZXM="
        },
        "jailed": true,
        "status": "BOND_STATUS_UNSPECIFIED",
        "tokens": "text",
        "delegator_shares": "text",
        "description": {
          "moniker": "text",
          "identity": "text",
          "website": "text",
          "security_contact": "text",
          "details": "text"
        },
        "unbonding_height": "text",
        "unbonding_time": "2025-07-13T22:50:53.253Z",
        "commission": {
          "commission_rates": {
            "rate": "text",
            "max_rate": "text",
            "max_change_rate": "text"
          },
          "update_time": "2025-07-13T22:50:53.253Z"
        },
        "min_self_delegation": "text",
        "unbonding_on_hold_ref_count": "text",
        "unbonding_ids": [
          "text"
        ]
      }
    ]
  }
}

Parameters queries the staking parameters.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "unbonding_time": "text",
    "max_validators": 1,
    "max_entries": 1,
    "historical_entries": 1,
    "bond_denom": "text",
    "min_commission_rate": "text"
  }
}

Pool queries the pool info.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/pool HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "pool": {
    "not_bonded_tokens": "text",
    "bonded_tokens": "text"
  }
}

Validators queries all validators that match the given status.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Query parameters
statusanyOptional

status enables to query for validators matching a given status.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/validators HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "validators": [
    {
      "operator_address": "text",
      "consensus_pubkey": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "jailed": true,
      "status": "BOND_STATUS_UNSPECIFIED",
      "tokens": "text",
      "delegator_shares": "text",
      "description": {
        "moniker": "text",
        "identity": "text",
        "website": "text",
        "security_contact": "text",
        "details": "text"
      },
      "unbonding_height": "text",
      "unbonding_time": "2025-07-13T22:50:53.253Z",
      "commission": {
        "commission_rates": {
          "rate": "text",
          "max_rate": "text",
          "max_change_rate": "text"
        },
        "update_time": "2025-07-13T22:50:53.253Z"
      },
      "min_self_delegation": "text",
      "unbonding_on_hold_ref_count": "text",
      "unbonding_ids": [
        "text"
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Validator queries validator info for given validator address.

get
Path parameters
validator_addranyRequired

validator_addr defines the validator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/validators/{validator_addr} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "validator": {
    "operator_address": "text",
    "consensus_pubkey": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "jailed": true,
    "status": "BOND_STATUS_UNSPECIFIED",
    "tokens": "text",
    "delegator_shares": "text",
    "description": {
      "moniker": "text",
      "identity": "text",
      "website": "text",
      "security_contact": "text",
      "details": "text"
    },
    "unbonding_height": "text",
    "unbonding_time": "2025-07-13T22:50:53.253Z",
    "commission": {
      "commission_rates": {
        "rate": "text",
        "max_rate": "text",
        "max_change_rate": "text"
      },
      "update_time": "2025-07-13T22:50:53.253Z"
    },
    "min_self_delegation": "text",
    "unbonding_on_hold_ref_count": "text",
    "unbonding_ids": [
      "text"
    ]
  }
}

ValidatorDelegations queries delegate info for given validator.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
validator_addranyRequired

validator_addr defines the validator address to query for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/validators/{validator_addr}/delegations HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "delegation_responses": [
    {
      "delegation": {
        "delegator_address": "text",
        "validator_address": "text",
        "shares": "text"
      },
      "balance": {
        "denom": "text",
        "amount": "text"
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Delegation queries delegate info for given validator delegator pair.

get
Path parameters
validator_addranyRequired

validator_addr defines the validator address to query for.

delegator_addranyRequired

delegator_addr defines the delegator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "delegation_response": {
    "delegation": {
      "delegator_address": "text",
      "validator_address": "text",
      "shares": "text"
    },
    "balance": {
      "denom": "text",
      "amount": "text"
    }
  }
}

UnbondingDelegation queries unbonding info for given validator delegator pair.

get
Path parameters
validator_addranyRequired

validator_addr defines the validator address to query for.

delegator_addranyRequired

delegator_addr defines the delegator address to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/validators/{validator_addr}/delegations/{delegator_addr}/unbonding_delegation HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "unbond": {
    "delegator_address": "text",
    "validator_address": "text",
    "entries": [
      {
        "creation_height": "text",
        "completion_time": "2025-07-13T22:50:53.253Z",
        "initial_balance": "text",
        "balance": "text",
        "unbonding_id": "text",
        "unbonding_on_hold_ref_count": "text"
      }
    ]
  }
}

ValidatorUnbondingDelegations queries unbonding delegations of a validator.

get

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

Path parameters
validator_addranyRequired

validator_addr defines the validator address to query for.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/staking/v1beta1/validators/{validator_addr}/unbonding_delegations HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "unbonding_responses": [
    {
      "delegator_address": "text",
      "validator_address": "text",
      "entries": [
        {
          "creation_height": "text",
          "completion_time": "2025-07-13T22:50:53.253Z",
          "initial_balance": "text",
          "balance": "text",
          "unbonding_id": "text",
          "unbonding_on_hold_ref_count": "text"
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

TxDecode decodes the transaction.

post

Since: cosmos-sdk 0.47

Body

TxDecodeRequest is the request type for the Cosmos.TxDecode RPC method.

Since: cosmos-sdk 0.47

tx_bytesstring · byteOptional

tx_bytes is the raw transaction.

Responses
200
A successful response.
application/json
post
POST /cosmos/tx/v1beta1/decode HTTP/1.1
Host: babylon.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 23

{
  "tx_bytes": "Ynl0ZXM="
}
{
  "tx": {
    "body": {
      "messages": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "memo": "text",
      "timeout_height": "text",
      "extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "non_critical_extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ]
    },
    "auth_info": {
      "signer_infos": [
        {
          "public_key": {
            "type_url": "text",
            "value": "Ynl0ZXM="
          },
          "mode_info": {
            "single": {
              "mode": "SIGN_MODE_UNSPECIFIED"
            },
            "multi": "[Circular Reference]"
          },
          "sequence": "text"
        }
      ],
      "fee": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "gas_limit": "text",
        "payer": "text",
        "granter": "text"
      },
      "tip": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "tipper": "text"
      }
    },
    "signatures": [
      "Ynl0ZXM="
    ]
  }
}

TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.

post

Since: cosmos-sdk 0.47

Body

TxDecodeAminoRequest is the request type for the Cosmos.TxDecodeAmino RPC method.

Since: cosmos-sdk 0.47

amino_binarystring · byteOptional
Responses
200
A successful response.
application/json
post
POST /cosmos/tx/v1beta1/decode/amino HTTP/1.1
Host: babylon.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 27

{
  "amino_binary": "Ynl0ZXM="
}
{
  "amino_json": "text"
}

TxEncode encodes the transaction.

post

Since: cosmos-sdk 0.47

Body

TxEncodeRequest is the request type for the Cosmos.TxEncode RPC method.

Since: cosmos-sdk 0.47

Responses
200
A successful response.
application/json
post
POST /cosmos/tx/v1beta1/encode HTTP/1.1
Host: babylon.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 629

{
  "tx": {
    "body": {
      "messages": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "memo": "text",
      "timeout_height": "text",
      "extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "non_critical_extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ]
    },
    "auth_info": {
      "signer_infos": [
        {
          "public_key": {
            "type_url": "text",
            "value": "Ynl0ZXM="
          },
          "mode_info": {
            "single": {
              "mode": "SIGN_MODE_UNSPECIFIED"
            },
            "multi": "[Circular Reference]"
          },
          "sequence": "text"
        }
      ],
      "fee": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "gas_limit": "text",
        "payer": "text",
        "granter": "text"
      },
      "tip": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "tipper": "text"
      }
    },
    "signatures": [
      "Ynl0ZXM="
    ]
  }
}
{
  "tx_bytes": "Ynl0ZXM="
}

TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.

post

Since: cosmos-sdk 0.47

Body

TxEncodeAminoRequest is the request type for the Cosmos.TxEncodeAmino RPC method.

Since: cosmos-sdk 0.47

amino_jsonstringOptional
Responses
200
A successful response.
application/json
post
POST /cosmos/tx/v1beta1/encode/amino HTTP/1.1
Host: babylon.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 21

{
  "amino_json": "text"
}
{
  "amino_binary": "Ynl0ZXM="
}

Simulate simulates executing a transaction for estimating gas usage.

post
Body

SimulateRequest is the request type for the Cosmos.Simulate RPC method.

tx_bytesstring · byteOptional

tx_bytes is the raw transaction.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
post
POST /cosmos/tx/v1beta1/simulate HTTP/1.1
Host: babylon.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 651

{
  "tx": {
    "body": {
      "messages": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "memo": "text",
      "timeout_height": "text",
      "extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "non_critical_extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ]
    },
    "auth_info": {
      "signer_infos": [
        {
          "public_key": {
            "type_url": "text",
            "value": "Ynl0ZXM="
          },
          "mode_info": {
            "single": {
              "mode": "SIGN_MODE_UNSPECIFIED"
            },
            "multi": "[Circular Reference]"
          },
          "sequence": "text"
        }
      ],
      "fee": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "gas_limit": "text",
        "payer": "text",
        "granter": "text"
      },
      "tip": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "tipper": "text"
      }
    },
    "signatures": [
      "Ynl0ZXM="
    ]
  },
  "tx_bytes": "Ynl0ZXM="
}
{
  "gas_info": {
    "gas_wanted": "text",
    "gas_used": "text"
  },
  "result": {
    "data": "Ynl0ZXM=",
    "log": "text",
    "events": [
      {
        "type": "text",
        "attributes": [
          {
            "key": "text",
            "value": "text",
            "index": true
          }
        ]
      }
    ],
    "msg_responses": [
      {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    ]
  }
}

GetTxsEvent fetches txs by event.

get
Query parameters
eventsanyOptional

events is the list of transaction event type. Deprecated post v0.47.x: use query instead, which should contain a valid events query.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

order_byanyOptional
  • ORDER_BY_UNSPECIFIED: ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults to ASC in this case.
  • ORDER_BY_ASC: ORDER_BY_ASC defines ascending order
  • ORDER_BY_DESC: ORDER_BY_DESC defines descending order
pageanyOptional

page is the page number to query, starts at 1. If not provided, will default to first page.

limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

queryanyOptional

query defines the transaction event query that is proxied to Tendermint's TxSearch RPC method. The query must be valid.

Since cosmos-sdk 0.50

Responses
200
A successful response.
application/json
get
GET /cosmos/tx/v1beta1/txs HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "txs": [
    {
      "body": {
        "messages": [
          {
            "type_url": "text",
            "value": "Ynl0ZXM="
          }
        ],
        "memo": "text",
        "timeout_height": "text",
        "extension_options": [
          {
            "type_url": "text",
            "value": "Ynl0ZXM="
          }
        ],
        "non_critical_extension_options": [
          {
            "type_url": "text",
            "value": "Ynl0ZXM="
          }
        ]
      },
      "auth_info": {
        "signer_infos": [
          {
            "public_key": {
              "type_url": "text",
              "value": "Ynl0ZXM="
            },
            "mode_info": "[Circular Reference]",
            "sequence": "text"
          }
        ],
        "fee": {
          "amount": [
            {
              "denom": "text",
              "amount": "text"
            }
          ],
          "gas_limit": "text",
          "payer": "text",
          "granter": "text"
        },
        "tip": {
          "amount": [
            {
              "denom": "text",
              "amount": "text"
            }
          ],
          "tipper": "text"
        }
      },
      "signatures": [
        "Ynl0ZXM="
      ]
    }
  ],
  "tx_responses": [
    {
      "height": "text",
      "txhash": "text",
      "codespace": "text",
      "code": 1,
      "data": "text",
      "raw_log": "text",
      "logs": [
        {
          "msg_index": 1,
          "log": "text",
          "events": [
            {
              "type": "text",
              "attributes": [
                {
                  "key": "text",
                  "value": "text"
                }
              ]
            }
          ]
        }
      ],
      "info": "text",
      "gas_wanted": "text",
      "gas_used": "text",
      "tx": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "timestamp": "text",
      "events": [
        {
          "type": "text",
          "attributes": [
            {
              "key": "text",
              "value": "text",
              "index": true
            }
          ]
        }
      ]
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  },
  "total": "text"
}

BroadcastTx broadcast transaction.

post
Body

BroadcastTxRequest is the request type for the Cosmos.BroadcastTxRequest RPC method.

tx_bytesstring · byteOptional

tx_bytes is the raw transaction.

modestring · enumOptional

BroadcastMode specifies the broadcast mode for the TxCosmos.Broadcast RPC method.

  • BROADCAST_MODE_UNSPECIFIED: zero-value for mode ordering
  • BROADCAST_MODE_BLOCK: DEPRECATED: use BROADCAST_MODE_SYNC instead, BROADCAST_MODE_BLOCK is not supported by the SDK from v0.47.x onwards.
  • BROADCAST_MODE_SYNC: BROADCAST_MODE_SYNC defines a tx broadcasting mode where the client waits for a CheckTx execution response only.
  • BROADCAST_MODE_ASYNC: BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns immediately.
Default: BROADCAST_MODE_UNSPECIFIEDPossible values:
Responses
200
A successful response.
application/json
post
POST /cosmos/tx/v1beta1/txs HTTP/1.1
Host: babylon.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 59

{
  "tx_bytes": "Ynl0ZXM=",
  "mode": "BROADCAST_MODE_UNSPECIFIED"
}
{
  "tx_response": {
    "height": "text",
    "txhash": "text",
    "codespace": "text",
    "code": 1,
    "data": "text",
    "raw_log": "text",
    "logs": [
      {
        "msg_index": 1,
        "log": "text",
        "events": [
          {
            "type": "text",
            "attributes": [
              {
                "key": "text",
                "value": "text"
              }
            ]
          }
        ]
      }
    ],
    "info": "text",
    "gas_wanted": "text",
    "gas_used": "text",
    "tx": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "timestamp": "text",
    "events": [
      {
        "type": "text",
        "attributes": [
          {
            "key": "text",
            "value": "text",
            "index": true
          }
        ]
      }
    ]
  }
}

GetBlockWithTxs fetches a block with decoded txs.

get

Since: cosmos-sdk 0.45.2

Path parameters
heightanyRequired

height is the height of the block to query.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/tx/v1beta1/txs/block/{height} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "txs": [
    {
      "body": {
        "messages": [
          {
            "type_url": "text",
            "value": "Ynl0ZXM="
          }
        ],
        "memo": "text",
        "timeout_height": "text",
        "extension_options": [
          {
            "type_url": "text",
            "value": "Ynl0ZXM="
          }
        ],
        "non_critical_extension_options": [
          {
            "type_url": "text",
            "value": "Ynl0ZXM="
          }
        ]
      },
      "auth_info": {
        "signer_infos": [
          {
            "public_key": {
              "type_url": "text",
              "value": "Ynl0ZXM="
            },
            "mode_info": "[Circular Reference]",
            "sequence": "text"
          }
        ],
        "fee": {
          "amount": [
            {
              "denom": "text",
              "amount": "text"
            }
          ],
          "gas_limit": "text",
          "payer": "text",
          "granter": "text"
        },
        "tip": {
          "amount": [
            {
              "denom": "text",
              "amount": "text"
            }
          ],
          "tipper": "text"
        }
      },
      "signatures": [
        "Ynl0ZXM="
      ]
    }
  ],
  "block_id": {
    "hash": "Ynl0ZXM=",
    "part_set_header": {
      "total": 1,
      "hash": "Ynl0ZXM="
    }
  },
  "block": {
    "header": {
      "version": {
        "block": "text",
        "app": "text"
      },
      "chain_id": "text",
      "height": "text",
      "time": "2025-07-13T22:50:53.253Z",
      "last_block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "last_commit_hash": "Ynl0ZXM=",
      "data_hash": "Ynl0ZXM=",
      "validators_hash": "Ynl0ZXM=",
      "next_validators_hash": "Ynl0ZXM=",
      "consensus_hash": "Ynl0ZXM=",
      "app_hash": "Ynl0ZXM=",
      "last_results_hash": "Ynl0ZXM=",
      "evidence_hash": "Ynl0ZXM=",
      "proposer_address": "Ynl0ZXM="
    },
    "data": {
      "txs": [
        "Ynl0ZXM="
      ]
    },
    "evidence": {
      "evidence": [
        {
          "duplicate_vote_evidence": {
            "vote_a": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "vote_b": {
              "type": "SIGNED_MSG_TYPE_UNKNOWN",
              "height": "text",
              "round": 1,
              "block_id": {
                "hash": "Ynl0ZXM=",
                "part_set_header": {
                  "total": 1,
                  "hash": "Ynl0ZXM="
                }
              },
              "timestamp": "2025-07-13T22:50:53.253Z",
              "validator_address": "Ynl0ZXM=",
              "validator_index": 1,
              "signature": "Ynl0ZXM=",
              "extension": "Ynl0ZXM=",
              "extension_signature": "Ynl0ZXM="
            },
            "total_voting_power": "text",
            "validator_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          },
          "light_client_attack_evidence": {
            "conflicting_block": {
              "signed_header": {
                "header": {
                  "version": {
                    "block": "text",
                    "app": "text"
                  },
                  "chain_id": "text",
                  "height": "text",
                  "time": "2025-07-13T22:50:53.253Z",
                  "last_block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "last_commit_hash": "Ynl0ZXM=",
                  "data_hash": "Ynl0ZXM=",
                  "validators_hash": "Ynl0ZXM=",
                  "next_validators_hash": "Ynl0ZXM=",
                  "consensus_hash": "Ynl0ZXM=",
                  "app_hash": "Ynl0ZXM=",
                  "last_results_hash": "Ynl0ZXM=",
                  "evidence_hash": "Ynl0ZXM=",
                  "proposer_address": "Ynl0ZXM="
                },
                "commit": {
                  "height": "text",
                  "round": 1,
                  "block_id": {
                    "hash": "Ynl0ZXM=",
                    "part_set_header": {
                      "total": 1,
                      "hash": "Ynl0ZXM="
                    }
                  },
                  "signatures": [
                    {
                      "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
                      "validator_address": "Ynl0ZXM=",
                      "timestamp": "2025-07-13T22:50:53.253Z",
                      "signature": "Ynl0ZXM="
                    }
                  ]
                }
              },
              "validator_set": {
                "validators": [
                  {
                    "address": "Ynl0ZXM=",
                    "pub_key": {
                      "ed25519": "Ynl0ZXM=",
                      "secp256k1": "Ynl0ZXM="
                    },
                    "voting_power": "text",
                    "proposer_priority": "text"
                  }
                ],
                "proposer": {
                  "address": "Ynl0ZXM=",
                  "pub_key": {
                    "ed25519": "Ynl0ZXM=",
                    "secp256k1": "Ynl0ZXM="
                  },
                  "voting_power": "text",
                  "proposer_priority": "text"
                },
                "total_voting_power": "text"
              }
            },
            "common_height": "text",
            "byzantine_validators": [
              {
                "address": "Ynl0ZXM=",
                "pub_key": {
                  "ed25519": "Ynl0ZXM=",
                  "secp256k1": "Ynl0ZXM="
                },
                "voting_power": "text",
                "proposer_priority": "text"
              }
            ],
            "total_voting_power": "text",
            "timestamp": "2025-07-13T22:50:53.253Z"
          }
        }
      ]
    },
    "last_commit": {
      "height": "text",
      "round": 1,
      "block_id": {
        "hash": "Ynl0ZXM=",
        "part_set_header": {
          "total": 1,
          "hash": "Ynl0ZXM="
        }
      },
      "signatures": [
        {
          "block_id_flag": "BLOCK_ID_FLAG_UNKNOWN",
          "validator_address": "Ynl0ZXM=",
          "timestamp": "2025-07-13T22:50:53.253Z",
          "signature": "Ynl0ZXM="
        }
      ]
    }
  },
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GetTx fetches a tx by hash.

get
Path parameters
hashanyRequired

hash is the tx hash to query, encoded as a hex string.

Responses
200
A successful response.
application/json
get
GET /cosmos/tx/v1beta1/txs/{hash} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "tx": {
    "body": {
      "messages": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "memo": "text",
      "timeout_height": "text",
      "extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "non_critical_extension_options": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ]
    },
    "auth_info": {
      "signer_infos": [
        {
          "public_key": {
            "type_url": "text",
            "value": "Ynl0ZXM="
          },
          "mode_info": {
            "single": {
              "mode": "SIGN_MODE_UNSPECIFIED"
            },
            "multi": "[Circular Reference]"
          },
          "sequence": "text"
        }
      ],
      "fee": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "gas_limit": "text",
        "payer": "text",
        "granter": "text"
      },
      "tip": {
        "amount": [
          {
            "denom": "text",
            "amount": "text"
          }
        ],
        "tipper": "text"
      }
    },
    "signatures": [
      "Ynl0ZXM="
    ]
  },
  "tx_response": {
    "height": "text",
    "txhash": "text",
    "codespace": "text",
    "code": 1,
    "data": "text",
    "raw_log": "text",
    "logs": [
      {
        "msg_index": 1,
        "log": "text",
        "events": [
          {
            "type": "text",
            "attributes": [
              {
                "key": "text",
                "value": "text"
              }
            ]
          }
        ]
      }
    ],
    "info": "text",
    "gas_wanted": "text",
    "gas_used": "text",
    "tx": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "timestamp": "text",
    "events": [
      {
        "type": "text",
        "attributes": [
          {
            "key": "text",
            "value": "text",
            "index": true
          }
        ]
      }
    ]
  }
}

AppliedPlan queries a previously applied upgrade plan by its name.

get
Path parameters
nameanyRequired

name is the name of the applied plan to query for.

Responses
200
A successful response.
application/json
get
GET /cosmos/upgrade/v1beta1/applied_plan/{name} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "height": "text"
}

Returns the account with authority to conduct upgrades

get

Since: cosmos-sdk 0.46

Responses
200
A successful response.
application/json
get
GET /cosmos/upgrade/v1beta1/authority HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "address": "text"
}

CurrentPlan queries the current upgrade plan.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/upgrade/v1beta1/current_plan HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "plan": {
    "name": "text",
    "time": "2025-07-13T22:50:53.253Z",
    "height": "text",
    "info": "text",
    "upgraded_client_state": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  }
}

ModuleVersions queries the list of module versions from state.

get

Since: cosmos-sdk 0.43

Query parameters
module_nameanyOptional

module_name is a field to query a specific module consensus version from state. Leaving this empty will fetch the full list of module versions from state.

Responses
200
A successful response.
application/json
get
GET /cosmos/upgrade/v1beta1/module_versions HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "module_versions": [
    {
      "name": "text",
      "version": "text"
    }
  ]
}

UpgradedConsensusState queries the consensus state that will serve as a trusted kernel for the next version of this chain. It will only be stored at the last height of this chain. UpgradedConsensusState RPC not supported with legacy querier This rpc is deprecated now that IBC has its own replacement (https://github.com/cosmos/ibc-go/blob/2c880a22e9f9cc75f62b527ca94aa75ce1106001/proto/ibc/core/client/v1/query.proto#L54)

get
Path parameters
last_heightanyRequired

last height of the current chain must be sent in request as this is the height under which next consensus state is stored

Responses
200
A successful response.
application/json
get
GET /cosmos/upgrade/v1beta1/upgraded_consensus_state/{last_height} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "upgraded_consensus_state": "Ynl0ZXM="
}

Returns list of `Authorization`, granted to the grantee by the granter.

get
Query parameters
granteranyOptional
granteeanyOptional
msg_type_urlanyOptional

Optional, msg_type_url, when set, will query only grants matching given msg type.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/authz/v1beta1/grants HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "grants": [
    {
      "authorization": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "expiration": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GranteeGrants returns a list of `GrantAuthorization` by grantee.

get

Since: cosmos-sdk 0.46

Path parameters
granteeanyRequired
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/authz/v1beta1/grants/grantee/{grantee} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "grants": [
    {
      "granter": "text",
      "grantee": "text",
      "authorization": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "expiration": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GranterGrants returns list of `GrantAuthorization`, granted by granter.

get

Since: cosmos-sdk 0.46

Path parameters
granteranyRequired
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/authz/v1beta1/grants/granter/{granter} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "grants": [
    {
      "granter": "text",
      "grantee": "text",
      "authorization": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "expiration": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Allowance returns granted allwance to the grantee by the granter.

get
Path parameters
granteranyRequired

granter is the address of the user granting an allowance of their funds.

granteeanyRequired

grantee is the address of the user being granted an allowance of another user's funds.

Responses
200
A successful response.
application/json
get
GET /cosmos/feegrant/v1beta1/allowance/{granter}/{grantee} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "allowance": {
    "granter": "text",
    "grantee": "text",
    "allowance": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  }
}

Allowances returns all the grants for the given grantee address.

get
Path parameters
granteeanyRequired
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/feegrant/v1beta1/allowances/{grantee} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "allowances": [
    {
      "granter": "text",
      "grantee": "text",
      "allowance": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

AllowancesByGranter returns all the grants given by an address

get

Since: cosmos-sdk 0.46

Path parameters
granteranyRequired
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/feegrant/v1beta1/issued/{granter} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "allowances": [
    {
      "granter": "text",
      "grantee": "text",
      "allowance": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721

get
Path parameters
owneranyRequired

owner is the owner address of the nft

class_idanyRequired

class_id associated with the nft

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/balance/{owner}/{class_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "amount": "text"
}

Classes queries all NFT classes

get
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/classes HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "classes": [
    {
      "id": "text",
      "name": "text",
      "symbol": "text",
      "description": "text",
      "uri": "text",
      "uri_hash": "text",
      "data": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Class queries an NFT class based on its id

get
Path parameters
class_idanyRequired

class_id associated with the nft

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/classes/{class_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "class": {
    "id": "text",
    "name": "text",
    "symbol": "text",
    "description": "text",
    "uri": "text",
    "uri_hash": "text",
    "data": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  }
}

NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in ERC721Enumerable

get
Query parameters
class_idanyOptional

class_id associated with the nft.

owneranyOptional

owner is the owner address of the nft.

pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/nfts HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "nfts": [
    {
      "class_id": "text",
      "id": "text",
      "uri": "text",
      "uri_hash": "text",
      "data": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

NFT queries an NFT based on its class and id.

get
Path parameters
class_idanyRequired

class_id associated with the nft

idanyRequired

id is a unique identifier of the NFT

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/nfts/{class_id}/{id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "nft": {
    "class_id": "text",
    "id": "text",
    "uri": "text",
    "uri_hash": "text",
    "data": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    }
  }
}

Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721

get
Path parameters
class_idanyRequired

class_id associated with the nft

idanyRequired

id is a unique identifier of the NFT

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/owner/{class_id}/{id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "owner": "text"
}

Supply queries the number of NFTs from the given class, same as totalSupply of ERC721.

get
Path parameters
class_idanyRequired

class_id associated with the nft

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/supply/{class_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "amount": "text"
}

GroupInfo queries group info based on group id.

get
Path parameters
group_idanyRequired

group_id is the unique ID of the group.

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/group_info/{group_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "info": {
    "id": "text",
    "admin": "text",
    "metadata": "text",
    "version": "text",
    "total_weight": "text",
    "created_at": "2025-07-13T22:50:53.253Z"
  }
}

GroupMembers queries members of a group by group id.

get
Path parameters
group_idanyRequired

group_id is the unique ID of the group.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/group_members/{group_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "members": [
    {
      "group_id": "text",
      "member": {
        "address": "text",
        "weight": "text",
        "metadata": "text",
        "added_at": "2025-07-13T22:50:53.253Z"
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GroupPoliciesByAdmin queries group policies by admin address.

get
Path parameters
adminanyRequired

admin is the admin address of the group policy.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/group_policies_by_admin/{admin} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "group_policies": [
    {
      "address": "text",
      "group_id": "text",
      "admin": "text",
      "metadata": "text",
      "version": "text",
      "decision_policy": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "created_at": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GroupPoliciesByGroup queries group policies by group id.

get
Path parameters
group_idanyRequired

group_id is the unique ID of the group policy's group.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/group_policies_by_group/{group_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "group_policies": [
    {
      "address": "text",
      "group_id": "text",
      "admin": "text",
      "metadata": "text",
      "version": "text",
      "decision_policy": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      },
      "created_at": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GroupPolicyInfo queries group policy info based on account address of group policy.

get
Path parameters
addressanyRequired

address is the account address of the group policy.

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/group_policy_info/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "info": {
    "address": "text",
    "group_id": "text",
    "admin": "text",
    "metadata": "text",
    "version": "text",
    "decision_policy": {
      "type_url": "text",
      "value": "Ynl0ZXM="
    },
    "created_at": "2025-07-13T22:50:53.253Z"
  }
}

Groups queries all groups in state.

get

Since: cosmos-sdk 0.47.1

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/groups HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "groups": [
    {
      "id": "text",
      "admin": "text",
      "metadata": "text",
      "version": "text",
      "total_weight": "text",
      "created_at": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GroupsByAdmin queries groups by admin address.

get
Path parameters
adminanyRequired

admin is the account address of a group's admin.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/groups_by_admin/{admin} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "groups": [
    {
      "id": "text",
      "admin": "text",
      "metadata": "text",
      "version": "text",
      "total_weight": "text",
      "created_at": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

GroupsByMember queries groups by member address.

get
Path parameters
addressanyRequired

address is the group member address.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/groups_by_member/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "groups": [
    {
      "id": "text",
      "admin": "text",
      "metadata": "text",
      "version": "text",
      "total_weight": "text",
      "created_at": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Proposal queries a proposal based on proposal id.

get
Path parameters
proposal_idanyRequired

proposal_id is the unique ID of a proposal.

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/proposal/{proposal_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "proposal": {
    "id": "text",
    "group_policy_address": "text",
    "metadata": "text",
    "proposers": [
      "text"
    ],
    "submit_time": "2025-07-13T22:50:53.253Z",
    "group_version": "text",
    "group_policy_version": "text",
    "status": "PROPOSAL_STATUS_UNSPECIFIED",
    "final_tally_result": {
      "yes_count": "text",
      "abstain_count": "text",
      "no_count": "text",
      "no_with_veto_count": "text"
    },
    "voting_period_end": "2025-07-13T22:50:53.253Z",
    "executor_result": "PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED",
    "messages": [
      {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    ],
    "title": "text",
    "summary": "text"
  }
}

TallyResult returns the tally result of a proposal. If the proposal is still in voting period, then this query computes the current tally state, which might not be final. On the other hand, if the proposal is final, then it simply returns the `final_tally_result` state stored in the proposal itself.

get
Path parameters
proposal_idanyRequired

proposal_id is the unique id of a proposal.

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/proposals/{proposal_id}/tally HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "tally": {
    "yes_count": "text",
    "abstain_count": "text",
    "no_count": "text",
    "no_with_veto_count": "text"
  }
}

ProposalsByGroupPolicy queries proposals based on account address of group policy.

get
Path parameters
addressanyRequired

address is the account address of the group policy related to proposals.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/proposals_by_group_policy/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "proposals": [
    {
      "id": "text",
      "group_policy_address": "text",
      "metadata": "text",
      "proposers": [
        "text"
      ],
      "submit_time": "2025-07-13T22:50:53.253Z",
      "group_version": "text",
      "group_policy_version": "text",
      "status": "PROPOSAL_STATUS_UNSPECIFIED",
      "final_tally_result": {
        "yes_count": "text",
        "abstain_count": "text",
        "no_count": "text",
        "no_with_veto_count": "text"
      },
      "voting_period_end": "2025-07-13T22:50:53.253Z",
      "executor_result": "PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED",
      "messages": [
        {
          "type_url": "text",
          "value": "Ynl0ZXM="
        }
      ],
      "title": "text",
      "summary": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

VoteByProposalVoter queries a vote by proposal id and voter.

get
Path parameters
proposal_idanyRequired

proposal_id is the unique ID of a proposal.

voteranyRequired

voter is a proposal voter account address.

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/vote_by_proposal_voter/{proposal_id}/{voter} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "vote": {
    "proposal_id": "text",
    "voter": "text",
    "option": "VOTE_OPTION_UNSPECIFIED",
    "metadata": "text",
    "submit_time": "2025-07-13T22:50:53.253Z"
  }
}

VotesByProposal queries a vote by proposal id.

get
Path parameters
proposal_idanyRequired

proposal_id is the unique ID of a proposal.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/votes_by_proposal/{proposal_id} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "votes": [
    {
      "proposal_id": "text",
      "voter": "text",
      "option": "VOTE_OPTION_UNSPECIFIED",
      "metadata": "text",
      "submit_time": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

VotesByVoter queries a vote by voter.

get
Path parameters
voteranyRequired

voter is a proposal voter account address.

Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/group/v1/votes_by_voter/{voter} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "votes": [
    {
      "proposal_id": "text",
      "voter": "text",
      "option": "VOTE_OPTION_UNSPECIFIED",
      "metadata": "text",
      "submit_time": "2025-07-13T22:50:53.253Z"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Account returns account permissions.

get
Query parameters
pagination.keyanyOptional

key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.

pagination.offsetanyOptional

offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.

pagination.limitanyOptional

limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.

pagination.count_totalanyOptional

count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.

pagination.reverseanyOptional

reverse is set to true if results are to be returned in the descending order.

Since: cosmos-sdk 0.43

Responses
200
A successful response.
application/json
get
GET /cosmos/circuit/v1/accounts HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "accounts": [
    {
      "address": "text",
      "permissions": {
        "level": "LEVEL_NONE_UNSPECIFIED",
        "limit_type_urls": [
          "text"
        ]
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}

Account returns account permissions.

get
Path parameters
addressanyRequired
Responses
200
A successful response.
application/json
get
GET /cosmos/circuit/v1/accounts/{address} HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "permission": {
    "level": "LEVEL_NONE_UNSPECIFIED",
    "limit_type_urls": [
      "text"
    ]
  }
}

DisabledList returns a list of disabled message urls

get
Responses
200
A successful response.
application/json
get
GET /cosmos/circuit/v1/disable_list HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "disabled_list": [
    "text"
  ]
}

Params queries the parameters of x/consensus module.

get
Responses
200
A successful response.
application/json
get
GET /cosmos/consensus/v1/params HTTP/1.1
Host: babylon.nownodes.io
Accept: */*
{
  "params": {
    "block": {
      "max_bytes": "text",
      "max_gas": "text"
    },
    "evidence": {
      "max_age_num_blocks": "text",
      "max_age_duration": "text",
      "max_bytes": "text"
    },
    "validator": {
      "pub_key_types": [
        "text"
      ]
    },
    "version": {
      "app": "text"
    },
    "abci": {
      "vote_extensions_enable_height": "text"
    }
  }
}