API reference

Base URL: https://api.isekai-pool.com/api/v1

KOTO block explorer (HTML, same infrastructure): https://explorer.isekai-pool.com

Endpoints

Coin slugs: yenten, koto, tidecoin.

GET /health

Quick check of every active node.

curl https://api.isekai-pool.com/api/v1/health

GET /{coin}/status

Returns fields such as blocks, difficulty, peers, progress, online, algo, symbol when the node is up. Use this from browsers — do not call raw node IPs from frontend code.

curl https://api.isekai-pool.com/api/v1/yenten/status

POST /{coin}/rpc

Body: {"method":"getblockcount","params":[]}. Only approved methods are allowed server-side.

curl -X POST https://api.isekai-pool.com/api/v1/yenten/rpc \
  -H "Content-Type: application/json" \
  -d '{"method":"getblockcount","params":[]}'

KOTO faucet (optional)

When the operator enables the faucet, POST /faucet/claim accepts JSON: wallet_address, activity_slug, turnstile_token (Cloudflare Turnstile). Optional header Idempotency-Key. Returns txid on success or a structured error. Disabled deployments respond with HTTP 503.

Whitelisted RPC methods

Including (not exhaustive — see server config for the canonical list):

getblockcount · getblockchaininfo · getnetworkinfo · getmempoolinfo · getblock · getblockhash · getrawtransaction · decoderawtransaction · sendrawtransaction · gettxoutsetinfo · getdifficulty · getconnectioncount

KOTO Faucet · Node status dashboard · Home · Source on GitHub