Klaytn Quickstart

How to get started building on Klaytn

You'll need to create a free All That Node account first!

What is Klaytn?

Klaytn is an open-source, enterprise-oriented blockchain that enables a user-friendly building experience through its modular infrastructure.

For more information on the Klaytn, please check out the official documentation.


Endpoints

*Find 'YOUR-API-KEY' by going to the Dashboard menu (Dashboard > Project Detail Page).

Sample

Request

curl https://klaytn-mainnet-rpc.allthatnode.com/'YOUR-API-KEY' \
-X POST \
-H "Content-Type: application/json" \
-d '{ "jsonrpc":"2.0", "method":"eth_syncing", "params":[], "id":1 }' 

Response

{
    "jsonrpc": "2.0",
    "result": false,
    "id": 1
}