GetBlock is a provider of access to full nodes of the most popular cryptocurrencies:
Users of GetBlock can connect the RSK node to their application using a fully compliant JSON-RPC API method. In addition, statistics and parameters for the RSK node are displayed in real time on GetBlock which guarantees direct and instant synchronization with the blockchain.
GetBlock is a service that provides a fast and easy connection to RSK nodes, and a continuously growing list of over 40 cryptocurrency nodes. In order to build a blockchain-based application, an individual or a company usually has to deploy and run several blockchain nodes. There is no need to launch and support all the nodes anymore as the GetBlock service will get access to all the available currencies automatically. In order to get started with GetBlock, clients of the platform have to register an account and receive an API key which will be displayed on the dashboard together with the related data.
The goal of Getblock is to provide users with access to full nodes from RSK, and many other leading blockchain platforms, allowing them to request on-chain information from a node without the need to set up one manually.
GetBlock guarantees a fast and stable connection to the RSK nodes by providing a turnkey infrastructure solution, so that a developer can easily integrate the RSK technology to the project without worrying about troubleshooting, updates, and constant syncing.
Users of GetBlock will have a personal account with the following features included:
GetBlock is a complete solution for developers who don’t need to wait hours and hours for the RSK node to be synced, as the platform provides a cost-effective infrastructure that guarantees a fast and reliable connection to a blockchain via full nodes.
GetBlock provides instant access to RSK nodes over HTTPS. It supports such APIs as REST, JSON-RPC, and IRI, which facilitates the whole process of building decentralized applications (dApps).
To send JSON RPC over HTTP, it is required to send the request using POST to URL rsk.getblock.io
with the headers Content-Type:application/json
and x-api-key:your-api-key
, and also, the request body.
The example of receiving the number of the last block:
{"jsonrpc": "2.0","id": "healthcheck","method": "eth_getBlockByNumber","params": ["latest", false]}
curl -X POST 'rsk.getblock.io' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": "healthcheck",
"method": "eth_getBlockByNumber",
"params": ["latest", false]
}'
If you have any technical issues write at support@getblock.io, for general inquiries and partnership offers write at marketing@getblock.io.
Go to top