Skip to main content

GIWA QuickStart

Updated on
Aug 31, 2026

The quickest way to start building on GIWA with Quicknode is to send a JSON-RPC request to your endpoint. This guide creates an endpoint and requests the latest GIWA Sepolia block number. Code samples are available in cURL and popular Ethereum libraries.

Get Your GIWA Endpoint

1

Create a Quicknode account

Sign up here if you haven't already.

2

Go to your dashboard

Open the Endpoints dashboard from the left sidebar menu to manage all your blockchain endpoints

3

Create a new endpoint

Click Create an Endpoint in the top-right corner, select GIWA as your blockchain, then select your preferred network

4

Copy your provider URLs

Keep the HTTP URL handy. You'll use it in your requests below.

Learn More about the Dashboard

For a detailed walkthrough of the Quicknode dashboard, check out our guide

Send Your First Request

Your endpoint is ready. Use eth_blockNumber to return the latest block number. Select a language or SDK and send the request below.


1

Check cURL installation

Most *nix based systems have cURL support out of the box. Open your terminal and check the cURL version by running the command below:

curl --version
2

Send a JSON-RPC request

In your terminal, copy and paste the following cURL command to retrieve the latest block number:

curl -X POST YOUR_QUICKNODE_ENDPOINT_URL/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
3

Sample Response

{
"jsonrpc": "2.0",
"id": 1,
"result": "0x1234567"
}

If you want to continue learning about making API requests, check out our guides and sample apps.