Ir diretamente para o conteúdo principal

Hyperliquid QuickStart

Atualizado em
Sep 01, 2026

The quickest way to start building on Hyperliquid with Quicknode is by sending a JSON-RPC request to your endpoint. In this quickstart, you’ll create an endpoint, copy its provider URL, and make your first request. Code samples are available in cURL as well as popular SDKs and programming languages.

Get Your Hyperliquid Endpoint

1

Criar uma Quicknode

Inscreve-te aqui, se ainda não o fizeste.

2

Aceda ao seu painel de controlo

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

3

Criar um novo endpoint

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

4

Copie os URLs do seu fornecedor

Tenha a URL HTTP à mão. Vai precisar dela nas solicitações que se seguem.

Saiba mais sobre o painel de controlo

Para um guia detalhado do Quicknode do Quicknode , consulte o nosso guia

HyperCore Access

The quickstart below uses HyperEVM (/evm path), which is available on all plans including free trial.

HyperCore services have additional requirements:

  • /info endpoint: available on all plans; 71 of 73 methods are natively supported (see method availability)
  • /hypercore JSON-RPC and WebSocket: requires Build plan or higher
  • gRPC streaming: requires Build plan or higher

View pricing and plan details →

Envie o seu primeiro pedido

Your endpoint is ready. Now, let's make your first call to the Hyperliquid blockchain. We’ll use the eth_blockNumber method, which returns the latest block number. Select your preferred language or SDK and follow the steps below to send your first request.


1

Verificar a instalação do cURL

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 --versão
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.