Public bananode RPC API for the BANANO network

This is a free bananode as-a-service for easy access to the BANANO network. You can use it for manual experiments, or integrate it for automated queries into your apps.

Link to RPC documentation. See also the other guides on the nanoo.tools website.

Specification

Limitations

Non-standard responses (list may be incomplete)

Future plans

Usage examples

HTTP GET:
http://api-beta.banano.cc:7070/?action=account_info&account=ban_1bananobh5rat99qfgt1ptpieie5swmoth87thi74qgbfrij7dcgjiij94xr


HTTP GET with a list:
http://api-beta.banano.cc:7070/?action=accounts_pending&accounts[]=ban_1111111111111111111111111111111111111111111111111117353trpda&accounts[]=ban_1nano4cqttsbdo5nwttfse8h3oaxickjwq4qobqphg7hifbcauaokz9q6ugj


HTTPS GET:
https://api-beta.banano.cc:443/?action=account_info&account=ban_1bananobh5rat99qfgt1ptpieie5swmoth87thi74qgbfrij7dcgjiij94xr


POST JSON via HTTP CURL:
curl -g -d '{ "action": "account_info", "account": "ban_1bananobh5rat99qfgt1ptpieie5swmoth87thi74qgbfrij7dcgjiij94xr" }' 'http://api-beta.banano.cc:7070'


POST JSON via HTTPS CURL:
curl -g -d '{ "action": "account_info", "account": "ban_1bananobh5rat99qfgt1ptpieie5swmoth87thi74qgbfrij7dcgjiij94xr" }' 'https://api-beta.banano.cc:443'


POST as application/x-www-form-urlencoded.
Header:

Host: api-beta.banano.cc:443
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en
Accept-Encoding: gzip, deflate
Pragma: no-cache
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache

Body: action=account_info&account=ban_1bananobh5rat99qfgt1ptpieie5swmoth87thi74qgbfrij7dcgjiij94xr