Connect to a Public Bitcoin Node

This platform provides access to a public Bitcoin node where you can run bitcoin-cli commands or connect via RPC for testing and learning purposes. It is an ideal environment for experimenting with blockchain operations without running your own node locally.

RPC Connection Details

You can connect to the public Bitcoin node using RPC with the following credentials:

  • RPC Host: https://node.satoshiworkshop.com/
  • RPC User: satoshi
  • RPC Password: satoshiworkshop.com

Example: Using RPC to Query the Public Bitcoin Node

Here is an example curl request to test RPC commands:

curl --user satoshi:satoshiworkshop.com --data-binary '{"jsonrpc":"1.0","id":"curltest","method":"getblockcount","params":[]}' -H 'content-type: text/plain;' https://node.satoshiworkshop.com/

Important Safety Notice

This is a public Bitcoin node provided for testing and educational purposes. Please do not deposit real BTC into wallets created here, as this environment is intended purely for learning, experimentation, and exploring blockchain operations safely.

I do not provide any custodial services or monitoring of funds. Any BTC sent to this node or related wallets is entirely at the sender’s own discretion. I cannot and do not guarantee the security, recovery, or management of such funds.


Bitcoin CLI Terminal
satoshi@bitcoin-cli: ~

            
satoshi@bitcoin-cli:~$